Compare commits
No commits in common. "ebc48b2cb73784a489c837a65d4f680d0b9da706" and "49c5daf2288fa78b9e775faf4ce02b8019e0b1ab" have entirely different histories.
ebc48b2cb7
...
49c5daf228
13
app/.gitignore
vendored
13
app/.gitignore
vendored
@ -1,11 +1,8 @@
|
||||
.ssh
|
||||
.venv
|
||||
.beaker/data/*
|
||||
!.beaker/data/.noremove
|
||||
|
||||
.ssh/
|
||||
**/__pycache__
|
||||
*.pyc
|
||||
|
||||
.DS_Store
|
||||
|
||||
venv/
|
||||
env/
|
||||
.beaker/data/*
|
||||
!.beaker/data/.noremove
|
||||
nohup.out
|
||||
|
@ -1,13 +1,10 @@
|
||||
python3 -m venv .venv # Create .venv
|
||||
sudo apt-get install -y python3-pip
|
||||
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
|
||||
|
||||
.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
|
||||
.venv/bin/pip3 install requests # For HTTP Request (Recaptcha need a POST HTTP requests)
|
||||
pip install bcrypt
|
||||
pip install pyjwt[crypto]
|
||||
|
Loading…
Reference in New Issue
Block a user