A corporation manager and dashboard for EVE Online
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
Ben Kurtovic 2906830310 Add logging. 7 lat temu
calefaction add wsgi 7 lat temu
config Flesh out database, authentication, EVE SSO, docstrings. 7 lat temu
data Flesh out database, authentication, EVE SSO, docstrings. 7 lat temu
static Minor style tweaks, fixes. 7 lat temu
templates Minor style tweaks, fixes. 7 lat temu
.gitignore Add logging. 7 lat temu
LICENSE Flask basics, style. 7 lat temu
README.md add wsgi 7 lat temu
app.py Add clean message flashing, error handling. 7 lat temu
requirements.txt add wsgi 7 lat temu
uwsgi.ini Add logging. 7 lat temu

README.md

calefaction

calefaction is a corporation manager and dashboard for the video game EVE Online.

Guide

Install

git clone git@github.com:earwig/calefaction.git
cd calefaction
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt

Setup

cp config/config.yml.sample config/config.yml
vim config/config.yml  # follow instructions
cat data/schema.sql | sqlite3 data/db.sqlite3
...

Test

./app.py
# go to http://localhost:8080

Deploy

uwsgi --ini uwsgi.ini
# proxy to 127.0.0.1:9001