Compare commits
2 Commits
49c5daf228
...
ebc48b2cb7
Author | SHA1 | Date | |
---|---|---|---|
ebc48b2cb7 | |||
9eb5429455 |
13
app/.gitignore
vendored
13
app/.gitignore
vendored
@ -1,8 +1,11 @@
|
|||||||
.ssh/
|
.ssh
|
||||||
**/__pycache__
|
.venv
|
||||||
*.pyc
|
|
||||||
venv/
|
|
||||||
env/
|
|
||||||
.beaker/data/*
|
.beaker/data/*
|
||||||
!.beaker/data/.noremove
|
!.beaker/data/.noremove
|
||||||
|
|
||||||
|
**/__pycache__
|
||||||
|
*.pyc
|
||||||
|
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
nohup.out
|
nohup.out
|
||||||
|
@ -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