Project has been deprecated. Check out the better version @ Zimmermanv2
This is Konishi's Back-End written in Python.
This version uses PostgreSQL(10) although you can use SQLite if you wish to.
When creating a Postgres Database, make sure to name it 'konishidb' or whatever you like and change the config name for the database in 'config.py'
Zimmerman is written in Python 3.6 to install Python 3.6 simply use:
OS/Distro | Command |
---|---|
Ubuntu 16.04 and Older | You will need to install using the PPA or a 3rd party Python distribution (i.e. Anaconda) |
Ubuntu 16.10+ | sudo apt install python3.6 |
Arch Linux | sudo pacman -Syy python3 |
Gentoo | sudo emerge -av dev-lang/python |
To install the requirements from 'requirements.txt' in a virtualenv run the following:
pip install virtualenv
virtualenv konishienv
source konishienv/bin/activate
pip install -r requirements.txt
$ python3.6 app.py