# [Ari-web blogs](https://blog.ari-web.xyz/)
[![Netlify Status](https://api.netlify.com/api/v1/badges/bbd7d670-9152-41a8-8c99-df57e4669606/deploy-status)](https://app.netlify.com/sites/blog-ari-web/deploys) ## Installing dependencies ```sh $ python3 -m virtualenv venv $ . venv/bin/activate $ pip install -r requirements.txt ``` Or ```sh $ python3 -m pip install --user -r requirements.txt ``` ## Completions - Bash ```bash $ . completions/blog.bash ``` ## Building - Generate full-on static site ```bash $ CI_BUILD=1 ./scripts/blog static ``` - Only build blogs ```bash $ CI_BUILD=1 ./scripts/blog static ``` `CI_BUILD` environment variable is optional, though setting it in a build/ci environment is good to save time on some operations that are useless in that context, for example sorting blogs. `CI_BUILD` can have any value.