Latest running version here
ID Number: admin
Password: admin
Setup environment for the first time:
$ mkdir [my_project_folder]
$ cd [my_project_folder]
$ sudo pip install virtualenv
$ virtualenv venv
$ source venv/bin/activate
$ git init
$ git clone https://github.com/fanghuang/Tongji.git
$ cd Tongji
$ pip install -r requirements.txt
$ python manage.py runserver
open http://127.0.0.1:8000/
$ deactivate
Next time when you start coding:
$ source venv/bin/activate
$ python manage.py runserver
When you finish coding:
$ deactivate
Or you can do this instead:
$ pip install -r requirements.txt
$ python manage.py runserver