Skip to content

Latest commit

 

History

History

Calculator

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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