Now use requirements.txt for pip install

This commit is contained in:
Dita Aji Pratama 2026-01-06 23:07:00 +07:00
parent 4951c25893
commit 68e0494f78
2 changed files with 8 additions and 12 deletions

View File

@ -1,12 +0,0 @@
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

8
requirements.txt Normal file
View File

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