Compare commits

...

5 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
37a6f60647 npm audit fix 2026-07-19 15:46:23 +02:00
Raph
2109d3c0bf configuration SWC 2026-07-19 15:32:06 +02:00
Raph
423942d65e fix(extensions.json): Extensions recommandées 2026-04-16 20:50:24 +02:00
6 changed files with 3174 additions and 778 deletions

View File

@@ -4,13 +4,13 @@
// List of extensions which should be recommended for users of this workspace.
"recommendations": [
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"Vue.volar",
"atommaterial.a-file-icon-vscode"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [
]
}

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

3897
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -3,6 +3,8 @@
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"builder": "swc",
"typeCheck": true,
"deleteOutDir": true
}
}

View File

@@ -41,6 +41,8 @@
"@nestjs/cli": "^11.0.0",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.0.1",
"@swc/cli": "^0.8.1",
"@swc/core": "^1.15.26",
"@types/bcrypt": "^6.0.0",
"@types/express": "^5.0.0",
"@types/jest": "^30.0.0",