You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
371 B
Markdown
31 lines
371 B
Markdown
# PHC Website
|
|
|
|
Sito web del PHC
|
|
|
|
## Usage
|
|
|
|
Come usare questo progetto
|
|
|
|
### Development
|
|
|
|
```sh
|
|
# Start the backend server and the frontend development server
|
|
$ go run -v ./cmd/dev-server
|
|
|
|
# Or using entr lo get live reload for go files
|
|
$ fd -e go | entr -r go run -v ./cmd/dev-server
|
|
```
|
|
|
|
### Production
|
|
|
|
```sh
|
|
$ go run ./cmd/server
|
|
```
|
|
|
|
### Deploy
|
|
|
|
```sh
|
|
$ make all
|
|
```
|
|
|