Provides links and ratings for YKnytt game.
create database knyttlevels;
create user ykuser with encrypted password '000000';
grant all privileges on database knyttlevels to ykuser;
Create and enter virtualenv if needed
pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
Generate worlds.csv with yknytt-parser/worlds-parse
python manage.py importcsv worlds.csv
(to update old levels: python manage.py importcsv worlds.csv --update)
See https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django/Deployment
Install Heroku CLI and add its remote repository
git push heroku master
heroku run python manage.py migrate
heroku run python manage.py createsuperuser
git push heroku master
heroku run python manage.py importcsv worlds.csv