Le framework HUGO utilisé pour créer son CV en 2 minutes
https://cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gregandev
0e6a77389b
|
3 months ago | |
---|---|---|
data | 7 months ago | |
layouts | 11 months ago | |
resources/_gen/assets/scss | 2 years ago | |
static/img | 12 months ago | |
themes/almeida-cv | 2 years ago | |
.drone.yml | 4 months ago | |
README.md | 3 months ago | |
config.toml | 2 years ago | |
web-to-pdf.py | 1 year ago |
README.md
INSTALLATION 🔨
- Via APT:
sudo apt install hugo
- Via la ligne de commande:
cd /tmp
curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest \
| grep browser_download_url \
| grep linux-amd64.deb \
| grep extended \
| cut -d '"' -f 4 \
| wget -i -
sudo dpkg -i hugo*_linux-amd64.deb
rm -rf hugo*_linux-amd64.deb
⚠️ La version APT de Debian n'est souvent pas la dernière release parue
UTILISATION
CREATION DU SITE 📃
- Vérifier l'installation:
hugo version
AJOUT D'UN THEME 🎨
git init
git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke.git themes/ananke
echo theme = \"ananke\" >> config.toml
Les thèmes HUGO CV: https://master--hugothemes.netlify.app/tags/resume/
LANCER LE SERVEUR 🚀
# L'option -D est pour servir les fichiers en Draft = true (non publiés)
hugo server -D
Visiter http://localhost:1313
BUILDER LE SITE 🚧
hugo
Les fichiers générés sont dans le dossier public
DEPLOIEMENT 🏁
VIA GITLAB AUTO DEVOPS
Compléter le config.toml comme ceci:
baseURL = "https://gitlab_user.gitlab.io/"
Compléter le fichier .gitlab-ci.yml comme ceci:
image: registry.gitlab.com/pages/hugo/hugo_extended:latest
variables:
GIT_SUBMODULE_STRATEGY: recursive
pages:
script:
- hugo
artifacts:
paths:
- public
only:
- main
VIA DOCKER 🐳
- Créer une Dockerfile contenant:
FROM nginx:alpine
COPY ./public/* /usr/share/nginx/html
COPY ./docs/nginx-exemple.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
docker build -t hugo-site:1.0 .
docker run -d -p 8989:80 hugo-site:1.0