Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 673 Bytes

README.md

File metadata and controls

41 lines (31 loc) · 673 Bytes

Intelligent Tutoring System

Setup

Install Django:

pip install Django

Perform database migration:

python manage.py check
python manage.py migrate

Run Development Server

python manage.py runserver

Public endpoint is at http://localhost:8000

Admin endpoint is at http://127.0.0.1:8000/admin/

Testing

Run tests:

python manage.py test
Creating test database for alias 'default'...
System check identified no issues (0 silenced).
..........
----------------------------------------------------------------------
Ran 10 tests in 0.025s

OK
Destroying test database for alias 'default'...