Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kwakubiney/remixify
Remix your favourite Spotify playlists :)
https://github.com/kwakubiney/remixify
celery django redis spotify
Last synced: about 1 month ago
JSON representation
Remix your favourite Spotify playlists :)
- Host: GitHub
- URL: https://github.com/kwakubiney/remixify
- Owner: kwakubiney
- License: mit
- Created: 2021-10-06T07:08:46.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-16T03:04:08.000Z (3 months ago)
- Last Synced: 2024-10-13T19:08:36.563Z (2 months ago)
- Topics: celery, django, redis, spotify
- Language: JavaScript
- Homepage: https://remixify-007.herokuapp.com/
- Size: 1.08 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE.MD
Awesome Lists containing this project
README
# Currently a WIP. (Heroku took it down. Might rebuild this and deploy to Render)
![gif-remixify](https://user-images.githubusercontent.com/71296367/161169298-092aef1e-c8c3-4629-ad5e-704036d42d5b.gif)
## Setting up
The server can be run locally but you will need to register your own Spotify app and set the credentials. The procedure is as follows:
1. Create an application on [Spotify's Developer Site](https://developer.spotify.com/my-applications/).
2. Add the redirect uri http://127.0.0.1:8000/accounts/spotify/login/callback/ on Spotify site(for development)
3. Create a `.env` file in the root of the project with the following variables;
- `SECRET_KEY`
- `CLIENT_ID`
- `CLIENT_SECRET`
- `REDIRECT_URI`
- `POSTGRES_NAME`
- `POSTGRES_PASSWORD`
- `POSTGRES_PORT`
- `POSTGRES_DB`
- `POSTGRES_HOST`
- `REMIXIFY`
- `SITE_ID`
- `ALLOWED_HOSTS`
- `REDIS_URL`
- `CELERY_RESULT_BACKEND`
- `CELERY_CACHE_BACKEND`Example can be found in `.env_local.txt` in the root directory:
## Running
1. Run `docker-compose up` in root directory to spin up necessary services and dependencies.
## Common Error When Logging In
1. `Social Matching App Query Does Not Exist`
This results from improper choice of `SITE_ID` environment variable. To find the correct site ID:
- `Site.objects.values_list('id', flat=True)` to list the IDs.