Compare commits

..

No commits in common. "master" and "product/mantool" have entirely different histories.

2 changed files with 12 additions and 8 deletions

12
install.sh Normal file
View File

@ -0,0 +1,12 @@
python3 -m venv .venv # Create .venv
.venv/bin/pip3 install --upgrade pip # Upgrade pip
.venv/bin/pip3 install bottle # Micro Framework
.venv/bin/pip3 install gunicorn # WSGI Server Backend
.venv/bin/pip3 install beaker # Session & caching library
.venv/bin/pip3 install mako # Template library
.venv/bin/pip3 install mysql-connector # Database connector
.venv/bin/pip3 install bcrypt # Password hash
.venv/bin/pip3 install pyjwt[crypto] # JWT

View File

@ -1,8 +0,0 @@
bottle
gunicorn
beaker
mako
mysql-connector
bcrypt
pyjwt[crypto]