Compare commits

...

4 Commits

Author SHA1 Message Date
=
3a2739dcf1 Start to implementing venv 2024-08-09 15:40:04 +07:00
=
d7e3939949 update gitignore 2024-08-09 15:39:34 +07:00
=
77fc39f7ee remove gitmodules 2024-08-09 15:38:02 +07:00
=
e04e1e2033 remove plain templates from gitmodules 2024-08-09 15:37:27 +07:00
4 changed files with 13 additions and 12 deletions

3
.gitignore vendored
View File

@ -1,7 +1,6 @@
**/__pycache__ **/__pycache__
*.pyc *.pyc
venv/ .venv/
env/
.beaker/data/* .beaker/data/*
!.beaker/data/.noremove !.beaker/data/.noremove
nohup.out nohup.out

3
.gitmodules vendored
View File

@ -1,3 +0,0 @@
[submodule "templates/plain"]
path = templates/plain
url = https://gitea.ditaajipratama.net/aji/costapy-template-plain.git

View File

@ -1,6 +1,12 @@
sudo apt-get install -y python3-pip python3 -m venv .venv # Create .venv
pip install --upgrade pip
pip install bottle # Micro Framework .venv/bin/pip3 install --upgrade pip # Upgrade pip
pip install gunicorn # WSGI Server Backend
pip install beaker # Session & caching library .venv/bin/pip3 install bottle # Micro Framework
pip install mako # Template library .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

@ -1 +0,0 @@
Subproject commit adcbeee71da67d013627b67855ce3351b3a847b7