https://github.com/jsncmgs1/spotify_ex_test
Test app and examples for spotify_ex
https://github.com/jsncmgs1/spotify_ex_test
Last synced: about 1 month ago
JSON representation
Test app and examples for spotify_ex
- Host: GitHub
- URL: https://github.com/jsncmgs1/spotify_ex_test
- Owner: jsncmgs1
- Created: 2015-12-01T21:02:37.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-06T18:00:15.000Z (over 2 years ago)
- Last Synced: 2025-04-22T20:16:03.918Z (about 1 month ago)
- Language: Elixir
- Size: 208 KB
- Stars: 6
- Watchers: 0
- Forks: 9
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SpotifyExTest
Test app and Examples for [SpotifyEx](https://github.com/jsncmgs1/spotify_ex)
You'll need to add your own client id, secret key, and user Id in the config settings for it to work properly.
## Setup
1. Clone the repo
```
$ git clone [email protected]:jsncmgs1/spotify_ex_test.git
```1. Create a config/secret.exs file. Make it look like this:
```
use Mix.Configconfig :spotify_ex,
user_id: "YOUR_USER_ID",
client_id: "YOUR_CLIENT_ID_HERE",
secret_key: "YOUR_SECRET_KEY_HERE"
```1. Install javascript dependencies
```
$ npm install
```1. Install the mix phx commands (if you don't have them already)
```
$ mix archive.install https://github.com/phoenixframework/archives/raw/master/phx_new.ez
```1. Start the server locally
```
$ mix phx.server
```1. Open http://localhost:4000 in your browser