Documentation #30
|
@ -27,10 +27,6 @@ kind: pipeline
|
|||
type: docker
|
||||
name: prod
|
||||
|
||||
platform:
|
||||
os: linux
|
||||
arch: arm64
|
||||
|
||||
steps:
|
||||
- name: install submodule
|
||||
image: drone/git
|
||||
|
@ -84,10 +80,6 @@ kind: pipeline
|
|||
type: docker
|
||||
name: staging
|
||||
|
||||
platform:
|
||||
os: linux
|
||||
arch: arm64
|
||||
|
||||
steps:
|
||||
- name: install submodule
|
||||
image: drone/git
|
||||
|
|
59
README.md
59
README.md
|
@ -6,26 +6,52 @@ Le but étant de communiquer et se faire connaître sur nos différentes offres
|
|||
|
||||
## Technologie
|
||||
|
||||
- Le site est créé à l'aide de l'outil de génération de site statique Open Source [Hugo](https://gohugo.io).
|
||||
- Le serveur web utilisé est [Nginx](https://www.nginx.com/)
|
||||
- La mise à jour s'éffectue avec [Directus](https://directus.io/)
|
||||
- Le déploiement à l'aide de docker compose (v2)
|
||||
- Le site est créé à l'aide de l'outil de génération de site statique Open Source [Hugo](https://gohugo.io)
|
||||
- Le déploiement continu se fait à l'aide de l'outil Open Source [Drone CI](https://www.drone.io/)
|
||||
- Le site est hébergé sur un stockage S3 dont l'outil est [Garage](https://garagehq.deuxfleurs.fr/) fait par l'association [Deuxfleurs](https://deuxfleurs.fr/)
|
||||
- Une gestion de haute disponibilité est mis en place à l'aide de [Traefik](https://traefik.io/)
|
||||
|
||||
## Commandes
|
||||
|
||||
Il y a plusieurs commandes que vous pouvez visualiser à l'aide de la commande `./run`.
|
||||
### Initialisation
|
||||
|
||||
Voici les commandes pour démarrer le projet localement :
|
||||
|
||||
```
|
||||
git clone --recurse-submodules https://git.weko.io/resilien/resilien.fr.git
|
||||
cd resilien.fr
|
||||
./run install
|
||||
./run dev
|
||||
git clone --recurse-submodules https://git.resilien.fr/ResiLien/resilien.git
|
||||
cd resilien
|
||||
```
|
||||
|
||||
Pour déployer en production :
|
||||
Il faut ensuite installer quelques paquet depuis NPM :
|
||||
|
||||
```
|
||||
./run prod
|
||||
(cd themes/hugo-theme-lowtech && npm i)
|
||||
```
|
||||
|
||||
### Développement
|
||||
|
||||
Il faut lancé le serveur de Hugo :
|
||||
|
||||
```
|
||||
hugo serve
|
||||
```
|
||||
|
||||
### Déploiement
|
||||
|
||||
Pour déployer sur _staging_ :
|
||||
|
||||
```
|
||||
hugo --minify --buildDrafts --buildFuture --environment staging
|
||||
node themes/hugo-theme-lowtech/scripts/typo
|
||||
hugo deploy --environment staging
|
||||
```
|
||||
|
||||
Pour déployer en _production_ :
|
||||
|
||||
```
|
||||
hugo --minify --environment production
|
||||
kosssi marked this conversation as resolved
|
||||
node themes/hugo-theme-lowtech/scripts/typo
|
||||
hugo deploy --environment production
|
||||
```
|
||||
|
||||
## Liens
|
||||
|
@ -36,14 +62,3 @@ Pour déployer en production :
|
|||
Icons :
|
||||
- Prise de note : https://thenounproject.com/search/?q=writting&i=3039563
|
||||
- Partage de fichiers : https://thenounproject.com/designcircle41/collection/data-storage/?i=4288373
|
||||
|
||||
## Favicon
|
||||
|
||||
Il a été fait avec l'outil en ligne https://formito.com/tools/favicon et sauvegarder dans /static/logo.svg :
|
||||
- Letter : R
|
||||
- Font : Ubuntu
|
||||
- Size : 90
|
||||
- Variant : 500
|
||||
- Background : carré avec les coins arrondis de couleur #c14508
|
||||
|
||||
Pour générer le favicon.ico `./run favicons`
|
||||
|
|
24
run
24
run
|
@ -1,24 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
# -e Exit immediately if a command exits with a non-zero status.
|
||||
# -u Treat unset variables as an error when substituting.
|
||||
set -eu
|
||||
|
||||
. ./.env
|
||||
. ./themes/hugo-theme-lowtech/scripts/run
|
||||
|
||||
echo " ____ _ _ _ "
|
||||
echo "| _ \ ___ ___(_) | (_) ___ _ __ "
|
||||
echo "| |_) / _ \/ __| | | | |/ _ \ '_ \ "
|
||||
echo "| _ < __/\__ \ | |___| | __/ | | |"
|
||||
echo "|_| \_\___||___/_|_____|_|\___|_| |_|"
|
||||
echo
|
||||
echo
|
||||
|
||||
if [ $# -ge 1 ]; then
|
||||
$@
|
||||
else
|
||||
help_generic
|
||||
fi
|
||||
|
||||
end
|
Loading…
Reference in New Issue
J'ai l'impression que c'est la même commande que pour déployer en
staging
. Il ne faut pas changer le paramètre--environment
?