A corporation manager and dashboard for EVE Online
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
Ben Kurtovic 9f4bc204e5 Refactor database character update function. 7 yıl önce
calefaction Refactor database character update function. 7 yıl önce
config Clean up styles and make them configurable. 7 yıl önce
data Flesh out database, authentication, EVE SSO, docstrings. 7 yıl önce
scripts Rename uwsgi config file; add top script. 7 yıl önce
static Switch style immediately with JS. 7 yıl önce
templates Add custom 404. 7 yıl önce
.gitignore Add logging. 7 yıl önce
LICENSE Flask basics, style. 7 yıl önce
README.md Use character style over default site-wide stylesheet. 7 yıl önce
app.py Add custom 404. 7 yıl önce
requirements.txt Rename uwsgi config file; add top script. 7 yıl önce

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