Compare commits

...

2 Commits

Author SHA1 Message Date
ebc48b2cb7 Add a comment on installation script 2024-09-26 19:47:52 +07:00
9eb5429455 Update .gitignore 2024-09-26 19:46:58 +07:00
2 changed files with 20 additions and 14 deletions

13
app/.gitignore vendored
View File

@ -1,8 +1,11 @@
.ssh/
**/__pycache__
*.pyc
venv/
env/
.ssh
.venv
.beaker/data/*
!.beaker/data/.noremove
**/__pycache__
*.pyc
.DS_Store
nohup.out

View File

@ -1,10 +1,13 @@
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
python3 -m venv .venv # Create .venv
pip install bcrypt
pip install pyjwt[crypto]
.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)