Compare commits

...

2 Commits

Author SHA1 Message Date
aee6ea6638 update readme 2026-07-19 16:09:52 +02:00
761657ede8 fix(docker-compose.yml): MAJ postgre volume 2026-07-19 16:02:01 +02:00
2 changed files with 39 additions and 4 deletions

View File

@@ -1,2 +1,37 @@
# gestion-inscriptions-mycompet
## Setup
### Node
```bash
nvm install 24.14.1
nvm use 24.14.1
npm install
```
### .env
Create the .env (from .env.example)
## Run modules
### Database
```bash
docker compose up -d db
```
### Backend
```bash
npm run start:dev -w backend
```
### Frontend
```bash
npm run dev -w frontend
```

View File

@@ -10,7 +10,7 @@ services:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-gim_db_password}
POSTGRES_DB: ${POSTGRES_DB:-gim_db}
volumes:
- db_data:/var/lib/postgresql/data
- db_data:/var/lib/postgresql
networks:
- gim_network