Graphs and tables for your Spotify account.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
744 B

  1. Before starting the setup, make sure **Python 3.6** is installed on your system.
  2. 1. Use the pip tool to install `virtualenv`
  3. [Guide](http://docs.python-guide.org/en/latest/dev/virtualenvs/)
  4. 2. Create a virtual environment in an empty directory:
  5. `virtualenv -p <path to python3.6 executable> <path to empty directory>`
  6. 3. cd into the directory you just created a virtual environment in, and clone our GitHub repo
  7. 4. Activate the virtual environment from the command line
  8. `source bin/activate`
  9. 5. cd into the repository root directory, install all dependencies using pip
  10. `pip install -r requirements.txt`
  11. 6. Run Django migrations
  12. `python manage.py migrate`
  13. 7. Start the server
  14. `python manage.py runserver`