This is a two page application. There is a users page with basic CRUD operations. Second page shows logs of all CRUD operations made on users page.
- Python (2.7)
Install requirements using pip
...
pip install -r requirements.txt
Then run the migrations
python manage.py migrate
Run server
python manage.py runserver 0.0.0.0:8000
You can now open the app in your browser at http://127.0.0.1:8000/
.