Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 966 Bytes

File metadata and controls

29 lines (18 loc) · 966 Bytes

DevOps

I made this simple web application using Python on Django.

This project is made for learners who wants to start learning Python on Django.

Procedure to run this project

  1. Copy the contents to your local machine
  2. Create Virtual Enviornment
  3. Install all requirements and dependecies from requirements.txt
  4. Run Django Migrations
    python manage.py makemigrations
    python manage.py makemigrations polls
    python manage.py migrate
  5. Collect all static files into ROOT folder using : python manage.py collectstatic
  6. 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