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.

27 lines
769 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`. (See this [guide](http://docs.python-guide.org/en/latest/dev/virtualenvs/) for further details.)
  3. `pip install --user pipenv`
  4. 2. Create a virtual environment.
  5. `python3 -m venv /path/to/new/virtual/environment`
  6. 3. `cd` into the directory you just created a virtual environment in, and clone the GitHub repo.
  7. 4. Activate the virtual environment from the command line.
  8. `source bin/activate`
  9. 5. `cd` into the repository root directory and 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`