I made this simple web application using Python on Django.
This project is made for learners who wants to start learning Python on Django.
- Copy the contents to your local machine
- Create Virtual Enviornment
- Install all requirements and dependecies from requirements.txt
- Run Django Migrations
python manage.py makemigrations
python manage.py makemigrations polls
python manage.py migrate - Collect all static files into ROOT folder using : python manage.py collectstatic
- Run the Django Server by command : python manage.py runserver
This project contains 2-3 apps.
The Home page is a copied template and contains dynamic blocks which you can manipulate through Admin panel.
i) Append the url /accounts/login to login
ii) Append the url /accounts/register to Register
iii) Append the url /calc to get addition of two numbers