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 52ffd35abc Add custom 404. 7 lat temu
calefaction Clean up styles and make them configurable. 7 lat temu
config Clean up styles and make them configurable. 7 lat temu
data Flesh out database, authentication, EVE SSO, docstrings. 7 lat temu
scripts Rename uwsgi config file; add top script. 7 lat temu
static Switch style immediately with JS. 7 lat temu
templates Add custom 404. 7 lat temu
.gitignore Add logging. 7 lat temu
LICENSE Flask basics, style. 7 lat temu
README.md Use character style over default site-wide stylesheet. 7 lat temu
app.py Add custom 404. 7 lat temu
requirements.txt Rename uwsgi config file; add top script. 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
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