Skip to content

t1g3pf4c3/devops

 
 

Repository files navigation

DevOps

github-pages

A collection of resources, scripts, docker images, tools and documentation 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 on port 8000
mkdocs serve

About

DevOps

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 60.1%
  • Python 20.0%
  • Java 7.2%
  • Dockerfile 6.5%
  • Scala 4.7%
  • sed 0.8%
  • Other 0.7%