Antonio De Lucreziis cdb5d2ef07 | 2 years ago | |
---|---|---|
_screenshots | 3 years ago | |
articles | 3 years ago | |
config | 2 years ago | |
frontend | 2 years ago | |
news | 3 years ago | |
public | 2 years ago | |
templates | 2 years ago | |
util | 2 years ago | |
views | 2 years ago | |
.env.dev | 2 years ago | |
.gitignore | 2 years ago | |
Makefile | 2 years ago | |
README.md | 2 years ago | |
auth.go | 3 years ago | |
go.mod | 2 years ago | |
go.sum | 2 years ago | |
main.go | 2 years ago | |
utenti.go | 2 years ago |
README.md
Nuovo Sito PHC
Repo del server del nuovo sito per il PHC.
Dipendenze
-
Golang
-
github.com/alecthomas/chroma
-
github.com/alecthomas/repr
-
github.com/go-chi/chi/v5
-
github.com/joho/godotenv
-
github.com/litao91/goldmark-mathjax
-
github.com/yuin/goldmark
-
github.com/yuin/goldmark-highlighting
-
gopkg.in/yaml.v3
-
-
NodeJS
-
AlpineJS
-
FuseJS
-
Setup
Per ottenere il progetto basta fare
$ git clone https://git.phc.dm.unipi.it/phc/website
$ cd frontend/
frontend/ $ npm install
frontend/ $ cd ..
$ make js
Development
Setup
Copiare il file .env.dev
in .env
per dire al server di lavorare in modalità di development e su quale indirizzo servire il sito, poi avviare il server.
$ cp .env.dev .env
$ go run .
Server
Un comando comodo in fase di development che usa entr
è
$ find . -type f -name '*.go' | entr -r go run .
# O anche con fd...
$ fd -e go | entr -r go run .
Frontend
Se si sta anche modificando codice dentro frontend/
, in contemporanea serve anche fare
$ make js
# O anche con un watcher...
$ fd -e js | entr make js
Environment Variables
-
MODE
Può essere
production
(default) odevelopment
. -
HOST
Indirizzo (locale) sul quale servire il sito, di default è
localhost:8000
. -
<SERVIZIO>_URL
Rappresentano link ad altri servizi forniti, è comodo impostarli così in modo da poter anche provare tutto insieme in locale su varie porte (e poi in produzione i vari url diventano link a sotto-domini del sito principale).
Per ora ci sono solo
GIT_URL
eCHAT_URL
.