A corporation manager and dashboard for EVE Online
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
Ben Kurtovic 79b88d4d08 Better session expiry handling, storing creation timestamp in cookie. há 7 anos
calefaction Better session expiry handling, storing creation timestamp in cookie. há 7 anos
config Clean up styles and make them configurable. há 7 anos
data Flesh out database, authentication, EVE SSO, docstrings. há 7 anos
scripts Rename uwsgi config file; add top script. há 7 anos
static Switch style immediately with JS. há 7 anos
templates Add custom 404. há 7 anos
.gitignore Add logging. há 7 anos
LICENSE Flask basics, style. há 7 anos
README.md Use character style over default site-wide stylesheet. há 7 anos
app.py Better session expiry handling, storing creation timestamp in cookie. há 7 anos
requirements.txt Rename uwsgi config file; add top script. há 7 anos

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
mkdir logs
sudo chmod 0600 config/config.yml data/db.sqlite3
sudo chown www-data:www-data config/config.yml data data/db.sqlite3 logs

Test

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

Deploy

uwsgi --ini config/uwsgi.ini
# proxy to http://127.0.0.1:9001