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.
|
|
|
# PHC / Problemi
|
|
|
|
|
|
|
|
Sito con una bacheca di problemi e la possibilità di inviare soluzioni in markdown e latex.
|
|
|
|
|
|
|
|
## 1. Setup
|
|
|
|
|
|
|
|
Installare tutte le dipendenze con il package manager preferito di turno (ed in tal caso sostituire `npm` con ad esempio `pnpm` o `yarn`)
|
|
|
|
|
|
|
|
```bash shell
|
|
|
|
$ cp .env.development .env
|
|
|
|
$ npm install
|
|
|
|
```
|
|
|
|
|
|
|
|
## 2. Development
|
|
|
|
|
|
|
|
```bash shell
|
|
|
|
$ npm run dev
|
|
|
|
```
|
|
|
|
|
|
|
|
## 2. Production
|
|
|
|
|
|
|
|
```bash shell
|
|
|
|
$ npm run build
|
|
|
|
$ npm run serve
|
|
|
|
```
|
|
|
|
|
|
|
|
## Contribuire
|
|
|
|
|
|
|
|
Plz esegui il seguente comando prima di fare commit così lo stile del codice è uniforme per tutti
|
|
|
|
|
|
|
|
```bash shell
|
|
|
|
$ prettier -w '**/*.ts' '**/*.tsx'
|
|
|
|
```
|
|
|
|
|
|
|
|
# TODO
|
|
|
|
|
|
|
|
- [x] Autenticazione vera magari con OAuth dell'ateneo o Google
|