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.
38 lines
670 B
Markdown
38 lines
670 B
Markdown
# PHC Website
|
|
|
|
Questo è il repository del sito web del PHC. Il sito è costruito utilizzando Astro, un framework statico per la generazione di siti web.
|
|
|
|
## Installazione
|
|
|
|
```bash
|
|
bun install
|
|
```
|
|
|
|
## Sviluppo
|
|
|
|
```bash
|
|
bun dev
|
|
```
|
|
|
|
## Build
|
|
|
|
```bash
|
|
bun build
|
|
```
|
|
|
|
## Deploy [TODO]
|
|
|
|
Il progetto contiene un `Dockerfile` che viene usato per il deploy (del server prodotto da Astro).
|
|
|
|
```bash
|
|
docker build -t phc-website .
|
|
docker run -p 3000:3000 phc-website
|
|
```
|
|
|
|
C'è anche un `.drone.yml` che viene usato per il deploy su un server remoto utilizzando Drone per il CD.
|
|
|
|
## Come Contribuire
|
|
|
|
Cose da fare
|
|
|
|
- Aggiungere guide in [src/content/guides/](./src/content/guides/) |