- Django app
- bootstrap front-end
- upload CSV file
- plotly graphs
- return table of the CSV file
Install project with pip.
Create virtual environment.
python3 -m venv venvActivate virtual environment.
. venv/bin/activateInstall all requirements.
pip install -r requirements.txtStart running local (localhost:8000)
python manage.py runserverMigrations (everytime that changes models.py)
python manage.py makemigrations
python manage.py migrateCreate superuser => add username and password
python manage.py createsuperuser