A Django web application for visualizing mathematical integrals.
- Python 3.8+
- Git
- pip (Python package manager)
-
Download and Setup
# Clone or download the repository git clone https://github.com/rilescode/integral-visualizer.git cd integral-visualizer
-
Create Virtual Environment
# Install virtualenv wrapper pip install virtualenvwrapper-win # Create virtual environment mkvirtualenv integral-visualizer # Activate environment workon integral-visualizer
-
Install Dependencies
# Install all dependencies from requirements.txt pip install -r requirements.txt -
Run Development Server
# Navigate to project directory (where manage.py is located) cd src # or wherever manage.py is located # Run migrations python manage.py migrate # Collect static files python manage.py collectstatic --noinput --clear # Start development server python manage.py runserver
-
Access Application
- Open your browser and go to
http://127.0.0.1:8000/
- Open your browser and go to
-
Download and Setup
# Clone or download the repository git clone https://github.com/rilescode/integral-visualizer.git cd integral-visualizer
-
Create Virtual Environment
# Create virtual environment python3 -m venv venv # Activate virtual environment source venv/bin/activate
-
Install Dependencies
# Install all dependencies from requirements.txt pip install -r requirements.txt -
Run Development Server
# Run migrations python manage.py migrate # Collect static files python manage.py collectstatic --noinput --clear # Start development server python manage.py runserver
-
Access Application
- Open your browser and go to
http://127.0.0.1:8000/
- Open your browser and go to
# Activate virtual environment
workon integral-visualizer # Windows
source venv/bin/activate # macOS/Linux
# Run development server
python manage.py runserver
# Run migrations
python manage.py migrate
# Make migrations (after model changes)
python manage.py makemigrations
# Collect static files
python manage.py collectstatic
# Create superuser account
python manage.py createsuperuser