Compare commits

..

No commits in common. "3a2739dcf153af16a1b37f496fbe6e99892237f2" and "2e3c069410d13206dc09aa5266cfdd788c073665" have entirely different histories.

4 changed files with 12 additions and 13 deletions

3
.gitignore vendored
View File

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

3
.gitmodules vendored Normal file
View File

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

View File

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

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