diff --git a/README.md b/README.md index 251d3b0..b8c6923 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,33 @@ Ce projet modèle est pour déployer son site web via le CI/CD du garage ## CONFIGURATION -.... +1. Placer son site web dans le dossier html/ : +```bash +├── Dockerfile +├── html +│ ├── content +│ │ ├── page1.html +│ │ ├── page2.html +│ │ └── page3.html +│ ├── css +│ │ └── styles.css +│ └── index.html +└── README.md +``` -## UTILISATION +2. Créer la branche deploy : +```bash +git checkout -b deploy +``` -.... \ No newline at end of file +3. Pousser la branche deploy : +```bash +git push origin -u deploy +``` + +4. Le site est disponible à l'adresse username.nom_du_projet.legaragenumerique.xyz + +exemple pour lèutilisateur greg avec un projet portfolio: +> https://greg.portfolio.legaragenumerique.xyz + +## NOTES \ No newline at end of file