# 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