authsquare/app/install.sh

14 lines
619 B
Bash
Raw Normal View History

2024-09-26 19:47:52 +07:00
python3 -m venv .venv # Create .venv
2024-06-19 17:20:05 +07:00
2024-09-26 19:47:52 +07:00
.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)