A web app created using django framework
Python 3.6 Django==2.0.3
Install virtualenv :
$ sudo apt install python-virtualenv
Create a virtual environment :
$ virtualenv env -p python3
Activate the env :
$ source env/bin/activate
Change directory to spokentut :
$ cd spokentut
Make migrations :
$ python manage.py makemigrations
Migrate the changes to the database :
$ python manage.py migrate
Run the server :
$ python manage.py runserver