Ajout d'un README
This commit is contained in:
parent
9ccf652c00
commit
a33a2b810f
1 changed files with 27 additions and 0 deletions
27
README.md
Normal file
27
README.md
Normal file
|
@ -0,0 +1,27 @@
|
|||
C'est un site statique généré par [hugo](https://gohugo.io/) que vous devez installer. Par exemple sous Fedora :
|
||||
|
||||
```bash
|
||||
sudo dnf install hugo
|
||||
```
|
||||
|
||||
Vous pouvez générer le site simplement :
|
||||
|
||||
```bash
|
||||
hugo
|
||||
```
|
||||
|
||||
Pour avoir un serveur web lors du développement :
|
||||
|
||||
```bash
|
||||
hugo server
|
||||
```
|
||||
|
||||
Pour déployer :
|
||||
|
||||
```bash
|
||||
export AWS_ACCESS_KEY_ID=xxxx
|
||||
export AWS_SECRET_ACCESS_KEY=xxx
|
||||
|
||||
hugo
|
||||
hugo deploy
|
||||
```
|
Loading…
Reference in a new issue