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.

70 lines
1.6 KiB

6 years ago
  1. # Spotify Data Visualizer
  2. See charts of the artists, genres and features of tracks in your library. Also keep track of your listening history.
  3. ## Getting Started
  4. These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
  5. ### Prerequisites
  6. Before starting the setup, make sure Python 3.6 and PostgreSQL is installed on your system.
  7. <!--- installation steps {{{ -->
  8. ### Installing
  9. 1. Use the pip tool to install `virtualenv`. See this [guide](http://docs.python-guide.org/en/latest/dev/virtualenvs/) for further details.
  10. ```
  11. pip install --user pipenv
  12. ```
  13. 2. Create a virtual environment.
  14. ```
  15. python3 -m venv /path/to/new/virtual/environment
  16. ```
  17. 3. `cd` into the directory you just created a virtual environment in, and clone the GitHub repo.
  18. 4. Activate the virtual environment from the command line.
  19. ```
  20. source bin/activate
  21. ```
  22. 5. `cd` into the repository root directory and install all dependencies using `pip`.
  23. ```
  24. pip install -r requirements.txt
  25. ```
  26. 6. Run Django migrations.
  27. ```
  28. manage.py migrate
  29. ```
  30. 7. Start the server.
  31. ```
  32. python manage.py runserver
  33. ```
  34. <!--- }}} installation steps -->
  35. ## Built With
  36. * [Django](https://www.djangoproject.com/)
  37. * [Spotify Web API](https://github.com/spotify/web-api)
  38. * [pip packages used](requirements.txt)
  39. ## Authors
  40. * [Kevin Mok](https://github.com/Kevin-Mok)
  41. * [Chris Shyi](https://github.com/chrisshyi)
  42. ## License
  43. This project is licensed under the GPL License - see the [LICENSE.md](LICENSE.md) file for details.