From 68e0494f7876aad7fd21756fc249a00c77fc6d09 Mon Sep 17 00:00:00 2001 From: Dita Aji Pratama Date: Tue, 6 Jan 2026 23:07:00 +0700 Subject: [PATCH] Now use requirements.txt for pip install --- install.sh | 12 ------------ requirements.txt | 8 ++++++++ 2 files changed, 8 insertions(+), 12 deletions(-) delete mode 100644 install.sh create mode 100644 requirements.txt diff --git a/install.sh b/install.sh deleted file mode 100644 index a8b19a5..0000000 --- a/install.sh +++ /dev/null @@ -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 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..19df4fa --- /dev/null +++ b/requirements.txt @@ -0,0 +1,8 @@ +bottle +gunicorn +beaker +mako + +mysql-connector +bcrypt +pyjwt[crypto]