https://github.com/duckthom/now-playing
WIP - Simple Spotify web player for large displays
https://github.com/duckthom/now-playing
Last synced: 5 months ago
JSON representation
WIP - Simple Spotify web player for large displays
- Host: GitHub
- URL: https://github.com/duckthom/now-playing
- Owner: DuckThom
- Created: 2017-04-27T15:11:03.000Z (about 9 years ago)
- Default Branch: 2.0
- Last Pushed: 2018-05-02T21:26:41.000Z (about 8 years ago)
- Last Synced: 2025-05-21T16:50:47.335Z (about 1 year ago)
- Language: Vue
- Homepage:
- Size: 1.5 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# now-playing
> Nuxt.js project
## Docker
```
docker run -it --rm --name now-playing \
--publish '3000:3000' \
-e HOST="0.0.0.0" \
-e CLIENT_ID="" \
-e CLIENT_SECRET="" \
-e REDIRECT_URI="/callback" \
lunamoonfang/now-playing
```
Example:
```
docker run -it --rm --name now-playing \
--publish '3000:3000' \
-e HOST="0.0.0.0" \
-e CLIENT_ID="wefwefwefwefwefew" \
-e CLIENT_SECRET="ergergergergergergerg" \
-e REDIRECT_URI="http://localhost:3000/callback" \
lunamoonfang/now-playing
```
## Build Setup
``` bash
# install dependencies
$ npm install # Or yarn install
# serve with hot reload at localhost:3000
$ npm run dev
# build for production and launch server
$ npm start
```
For detailed explanation on how things work, checkout the [Nuxt.js docs](https://github.com/nuxt/nuxt.js).
## Backpack
We use [backpack](https://github.com/palmerhq/backpack) to watch and build the application, so you can use the latest ES6 features (module syntax, async/await, etc.).