Compare commits

...

7 Commits

Author SHA1 Message Date
3e9af6738f update CLAUDE.md > branch name
Some checks failed
Deploy / deploy (push) Failing after 9s
2026-03-21 16:35:07 +01:00
80a5a5bc55 chore:clean template
Some checks failed
Deploy / deploy (push) Failing after 8s
2026-03-21 15:59:19 +01:00
a700becb0d chore: add docker compose templates
Some checks failed
Deploy / deploy (push) Failing after 9s
2026-03-21 15:55:16 +01:00
4e85aed098 chore: add docker compose templates
Some checks failed
Deploy / deploy (push) Failing after 8s
2026-03-21 15:54:30 +01:00
69680141ff ci: test runner
Some checks failed
Deploy / deploy (push) Failing after 7s
2026-03-21 15:41:37 +01:00
3b3e0e9004 ci: test runner
Some checks failed
Deploy / deploy (push) Failing after 1m37s
2026-03-21 15:35:29 +01:00
347f49e2af ci: test runner 2026-03-21 15:30:03 +01:00
3 changed files with 27 additions and 1 deletions

View File

@@ -39,7 +39,7 @@ npm run typecheck # IMPORTANT : lancer après chaque série de modifications
- IMPORTANT : ne jamais considérer une tâche terminée sans typecheck qui passe
## Git
- Branches : main (prod) → develop (dev) → feature/xxx
- Branches : main (prod) → dev (dev)
- Commits : feat: / fix: / docs: / refactor: / chore:
- IMPORTANT : toujours créer une nouvelle branche pour chaque tâche
- IMPORTANT : ne jamais pusher directement sur main

View File

@@ -0,0 +1,13 @@
# Nom du projet
## Description
[Description du projet]
## Installation
```bash
npm install
npm run dev
```
## Déploiement
Via Gitea Actions → Docker → NAS (rigolet.tech)

13
docker/docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
version: "3.8"
services:
app:
image: your-app:latest
container_name: your-app
restart: unless-stopped
networks:
- proxy
networks:
proxy:
external: true