aboutsummaryrefslogtreecommitdiffstats
path: root/dump.sql
AgeCommit message (Collapse)Author
2018-12-26Change session flowThibaut Horel
The application is now expected to only receive authenticated request; the user_id is available in the X-Remote-User header. The @login_required decorator creates the session cookie from this header.
2012-11-09Import old database.Thibaut Horel
The database is in the file new.db. dump,sql contains a sqlite3 compliant dump. To regenerate the database from the dump: $ sqlite3 old.db < dump.sql $ python createdb.py -s schema.sql -d new.db $ python import.py old.db new.db
2012-11-08Add sql dump from the former website (we need to figure out how to import it)Thibaut Horel