maj cicd
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Grégory Lebreton 2024-10-29 00:44:18 +01:00
parent 9de55c50e5
commit 5753698ef0

View File

@ -26,31 +26,32 @@ git clone git@git.legaragenumerique.fr:gitea_username/nom_du_projet.git
> Le git clone via SSH nécessite d'ajouter sa clé SSH sur le serveur GIT, sinon on peux le cloner en utilisant le lien HTTPS
#### Ajouter votre contenu en respectant les structure décrite ci-dessous:
??? info "Pour un site web"
```bash
├── Dockerfile
├── html
│ ├── content
│ │ ├── page1.html
│ │ ├── page2.html
│ │ └── page3.html
│ ├── css
│ │ └── styles.css
│ └── index.html
└── README.md
```
??? info "Pour un site hugo"
```bash
├── Dockerfile
├── hugo
│ ├── content
│ │ ├── page1.html
│ │ ├── page2.html
│ │ └── page3.html
│ └── config.toml
└── README.md
```
!!! note info "Pour déployer"
=== "un site web"
```bash
├── Dockerfile
├── html
│ ├── content
│ │ ├── page1.html
│ │ ├── page2.html
│ │ └── page3.html
│ ├── css
│ │ └── styles.css
│ └── index.html
└── README.md
```
=== "un site hugo"
```bash
├── Dockerfile
├── hugo
│ ├── content
│ │ ├── page1.html
│ │ ├── page2.html
│ │ └── page3.html
│ └── config.toml
└── README.md
```
#### créer la branch deploy et la pousser:
```bash