Skip to content

Latest commit

 

History

History
14 lines (14 loc) · 492 Bytes

README.md

File metadata and controls

14 lines (14 loc) · 492 Bytes

Django-calculator-app

A simple calculator web application built with Django backend. Perform basic arithmetic operations, store calculation history.

Installations

create virtual environment

python -m venv venv source venv/bin/activate

Install Dependencies:

pip install -r requirements.txt

Apply Database Migrations:

python manage.py migrate

Create a Superuser (Optional):

python manage.py createsuperuser

Run the Development Server:

python manage.py runserver