Compare commits
7 Commits
c2d22f4095
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
| 3e9af6738f | |||
| 80a5a5bc55 | |||
| a700becb0d | |||
| 4e85aed098 | |||
| 69680141ff | |||
| 3b3e0e9004 | |||
| 347f49e2af |
@@ -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
|
||||
|
||||
13
README.md
13
README.md
@@ -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
13
docker/docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user