Add a comment on installation script
This commit is contained in:
parent
9eb5429455
commit
ebc48b2cb7
@ -1,10 +1,13 @@
|
|||||||
sudo apt-get install -y python3-pip
|
python3 -m venv .venv # Create .venv
|
||||||
pip install --upgrade pip
|
|
||||||
pip install bottle # Micro Framework
|
|
||||||
pip install gunicorn # WSGI Server Backend
|
|
||||||
pip install beaker # Session & caching library
|
|
||||||
pip install mako # Template library
|
|
||||||
pip install mysql-connector # Database
|
|
||||||
|
|
||||||
pip install bcrypt
|
.venv/bin/pip3 install --upgrade pip # Upgrade pip
|
||||||
pip install pyjwt[crypto]
|
|
||||||
|
.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
|
||||||
|
.venv/bin/pip3 install requests # For HTTP Request (Recaptcha need a POST HTTP requests)
|
||||||
|
Loading…
Reference in New Issue
Block a user