Restored lost files and now serving from Go

Signed-off-by: Louis Hollingworth <louis@hollingworth.nl>
This commit is contained in:
Louis Hollingworth 2024-02-14 18:39:12 +00:00
parent dd67fc967a
commit f439090fa2
Signed by: lucxjo
GPG key ID: A11415CB3DC7809B
22 changed files with 646 additions and 2 deletions

35
README.md Normal file
View file

@ -0,0 +1,35 @@
# Friends Best
A fan website for the Netflix series "Young Royals".
## Contributing
I suggest using [Just](https://github.com/casey/just) to help with building
local changes. [PNPM](https://pnpm.io) is used for the package manager for the
frontend and the server is written in [Go](https://go.dev).
### Build Frontend
```sh
just build-fe
```
or
```sh
cd fe
pnpm build
```
### Build server
```sh
just build-server
```
or
```sh
go build ./server
```
### Build all
```sh
just build-all
```
### Build and Run all
```sh
just serve
```