This is website application built with Django python framework. The app was writen as part of django learning process following https://pythonprogramming.net/django-web-development-python-tutorial/
This is a sample tutorial app develop with django framework. We have used the following
- marializecss.com for styling
- Sqlite database
- Git Clone the app
- Use command tool to run the application server. On windows give command the following command >> python manage.py runserver
- Access the application via the link 127.0.0.1:8000
- On windows cmd run >> python manage.py shell
- Run the following commands on the shell to create new user
- from django.contrib.auth.models import User
- user=User.objects.create_user('foo', password='bar')
- user.is_superuser=True
- user.is_staff=True
- user.save()
- Access teh Admin via link 127.0.0.1:8000/admin
- Login using previously created credentials