authsquare/app
2024-09-01 22:37:56 +07:00
..
.beaker/data Beaker session dir 2024-06-17 12:15:17 +07:00
config Better staticdir system for the templates 2024-07-31 10:25:33 +07:00
core Better staticdir system for the templates 2024-07-31 10:25:33 +07:00
modules No need to import bottle on all public modules 2024-08-15 13:09:17 +07:00
pages Forgot password and reset password 2024-07-27 11:40:15 +07:00
procedure Add jwt token on the validation procedure response 2024-09-01 22:37:56 +07:00
scripts Add scripts 2024-06-17 17:31:07 +07:00
static Forgot password and reset password 2024-07-27 11:40:15 +07:00
templates Add static on main.py plain template 2024-07-31 10:27:34 +07:00
.gitignore Update .gitignore 2024-07-29 14:55:46 +07:00
costa.py Better staticdir system for the templates 2024-07-31 10:25:33 +07:00
handler.py Forgot password and reset password 2024-07-27 11:40:15 +07:00
install.sh Update install.sh 2024-06-19 17:20:05 +07:00
LICENSE Update LICENSE and README.md (CostaPy) 2024-06-17 12:18:48 +07:00
README.md Update LICENSE and README.md (CostaPy) 2024-06-17 12:18:48 +07:00

CostaPy

Python Web Framework. Build with Bottle and Mako.

License

CostaPy

Copyright (C) 2022 Dita Aji Pratama

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.

Requirement & Installation

Clone the repository

Clone the repository with --recursive when cloning the repo.

git clone https://gitea.ditaajipratama.net/aji/costapy.git --recursive

Note that if you forgot the --recursive flag you can do:

git submodule update --init

Note that when submodules have other submodules you need recursive option.

git submodule update --init --recursive

Dependencies

You need this libraries to use CostaPy:

  • bottle
  • gunicorn
  • beaker
  • mako

You can install it with run this command

sh install.sh

Here is the completed command

sudo apt-get install -y python3-pip
pip install --upgrade pip
pip install bottle
pip install gunicorn
pip install beaker
pip install mako

Usage

Use this command to start the web service

python3 costa.py

You can use nohup too and running it in the background like this

nohup python3 costa.py &

Configuration

Global Variable (config/globalvar.py)

globalvar.py is the place for storing your Global Variable.

baseurl
Is the variable for your base URL (without / in the end).

title
Is the variable for your web title.

Directory (config/directory.py)

directory.py is the place for storing your path. It is useful to calling the path more efficiently.

Handling the modules

Handling the module is in handler.py.