rate/README.md

45 lines
566 B
Markdown
Raw Normal View History

2022-10-10 10:11:11 +00:00
# RA:TE (Réalité Augmenté: Truc en)
2022-09-20 17:31:17 +00:00
2022-10-16 13:28:42 +00:00
Version Live : https://html5.yayeet.cf
2022-10-25 21:06:10 +00:00
![Bannière](./banner.png)
Necessite un fichier config (./api/config/config.json) comme celui-ci
```json
{
"server": {
"port": 8000,
"origin": ["http://localhost:8080"]
},
"mongo": {
"uri": "mongodb://localhost:27017",
"dbName": "rate"
}
}
```
Ainsi qu'un SGBD MongoDB
2022-10-10 10:11:11 +00:00
## Installation des dépendances
2022-09-22 16:00:56 +00:00
2022-10-16 13:28:42 +00:00
Dans ./
2022-09-22 16:00:56 +00:00
```bash
2022-10-25 21:06:10 +00:00
python ./scripts/tools.py install
2022-09-22 16:00:56 +00:00
```
2022-09-20 17:31:17 +00:00
## Pour lancer le projet
2022-10-10 10:11:11 +00:00
Dans ./api
2022-10-16 13:28:42 +00:00
2022-09-20 17:31:17 +00:00
```bash
npm run dev
```
2022-10-10 10:11:11 +00:00
Dans ./www
2022-10-16 13:28:42 +00:00
2022-09-20 17:31:17 +00:00
```bash
npm run dev
```