Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 660 Bytes

File metadata and controls

43 lines (33 loc) · 660 Bytes

Django SQL Project

  • Django app
  • bootstrap front-end
  • upload CSV file
  • plotly graphs
  • return table of the CSV file

Installation

Install project with pip.

Create virtual environment.

python3 -m venv venv

Activate virtual environment.

. venv/bin/activate

Install all requirements.

pip install -r requirements.txt

Start running local (localhost:8000)

python manage.py runserver

Migrations (everytime that changes models.py)

python manage.py makemigrations

python manage.py migrate

Create superuser => add username and password

python manage.py createsuperuser