Niqdev Devops Save

DevOps

Project README

DevOps

github-pages

A collection of notes, resources, documentation and POCs mainly related to distributed systems for local development, learning purposes and quick prototyping.

Development

Ubuntu

# install pip3
sudo apt install -y python3-pip

# install virtualenv globally 
sudo pip3 install virtualenv

# create virtualenv
virtualenv -p $(which python3) venv

# how-to activate virtualenv
source venv/bin/activate

# verify virtualenv
which python
python --version

# how-to deactivate virtualenv
deactivate

# install new package
pip install mkdocs

# update requirements
pip freeze > requirements.txt

# run locally
# http://localhost:8000
mkdocs serve
Open Source Agenda is not affiliated with "Niqdev Devops" Project. README Source: niqdev/devops

Open Source Agenda Badge

Open Source Agenda Rating