A Django application for scheduling the production of pharmaceutical products in a factory.
PharmaScheduler helps prioritize production based on equipment availability, production quantities, and completion times.
Demo data can be found in static/demoData
.
Setup:
python -m venv venv
source venv/bin/activate # for windows: use venv\Scripts\activate
pip install -r requirements.txt
Apply migrations:
python manage.py makemigrations
python manage.py migrate
Create a superuser:
python manage.py createsuperuser
Start the development server:
python manage.py runserver