-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: improve README and create Dockerfile and github workflow
- Loading branch information
Showing
16 changed files
with
267 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,4 +29,4 @@ jobs: | |
with: | ||
context: . | ||
push: true | ||
tags: user/app:latest | ||
tags: user/app:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM node:20-alpine | ||
|
||
# Set the working directory in the container to /app | ||
WORKDIR /app | ||
|
||
COPY ./build ./dist | ||
|
||
RUN npm install -g serve | ||
|
||
EXPOSE 5000 | ||
|
||
# The command to start the application | ||
CMD serve -s dist -l 5000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,110 @@ | ||
# Getting Started with Create React App | ||
# PlexArt Display | ||
|
||
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). | ||
![PlexArt Display](./plexart.png) | ||
|
||
It uses: | ||
- [zustand](https://github.com/pmndrs/zustand) for state management. | ||
- [wouter](https://github.com/molefrog/wouter) for routing. | ||
Welcome to PlexArt Display, a web application that brings your music to life. This project is all about showcasing your currently playing album art in a visually appealing way, turning your browser into a vibrant music hub. | ||
|
||
## Available Scripts | ||
PlexArt Display is more than just a pretty face. It offers basic music controls like play, pause, volume adjustment, and track navigation. But these controls are designed to be unobtrusive, appearing only when you need them, so the album art always takes center stage. | ||
|
||
In the project directory, you can run: | ||
One of the key features of PlexArt Display is the ability to browse through your Plex devices. Imagine a slide show where each slide is a different device, and you can flip through them with a simple swipe. | ||
|
||
But that's not all. PlexArt Display also has an 'Album Library' mode. Picture another slide show, this time with all the albums in your library. The slides change automatically, and the albums are chosen at random, so you never know what's coming next. It's like your own personal music lottery! | ||
|
||
The end goal of PlexArt Display is to be a dedicated music display in your living room or media room. It's a way to add a touch of style and interactivity to your music listening experience. | ||
|
||
## Features | ||
|
||
PlexArt Display is packed with features designed to enhance your music listening experience: | ||
|
||
- **Album Art Display**: The main feature of PlexArt Display is the ability to display the album art of the currently playing track. | ||
The album art takes up the entire screen, providing a visually appealing backdrop to your music. | ||
- **Basic Music Controls**: PlexArt Display provides basic music controls including play, pause, volume adjustment, and track navigation. | ||
These controls are designed to be unobtrusive, appearing only when you interact with the screen. | ||
- **Lyrics Display**: If available, PlexArt Display can show the lyrics of the currently playing song. | ||
- **Device Carousel**: Browse through all your Plex devices with a simple swipe. | ||
Each device is displayed as a slide in a carousel, making it easy to switch between devices. | ||
- **Album Library Mode**: In Album Library mode, all the albums in your library are displayed in a carousel. | ||
The carousel auto-plays, changing slides every few seconds. The albums are chosen at random, providing a unique and engaging experience every time. | ||
- **Works with your Sonos devices**: If you start a playlist or album on a Sonos device, PlexArt Display will automatically switch to that device and display the album art. | ||
|
||
## Configurations | ||
|
||
### `npm start` | ||
PlexArt Display can be customized to suit your needs by setting environment variables in your `.env` file. Here's a brief explanation of each one: | ||
|
||
Runs the app in the development mode.\ | ||
Open [http://localhost:3000](http://localhost:3000) to view it in the browser. | ||
- `REACT_APP_PLEX_TOKEN`: MANDATORY. This is your Plex token. It's used to authenticate with your Plex server. | ||
You can find it by following this [guide](https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/). | ||
|
||
The page will reload if you make edits.\ | ||
You will also see any lint errors in the console. | ||
- `REACT_APP_HIDE_LIBRARY`: OPTIONAL. This is a comma-separated list of library sections you want to hide. | ||
For example, if you have libraries named "Music" and "Podcasts" and you want to hide the "Podcasts" library, you would set this variable to `Podcasts`. | ||
|
||
### `npm test` | ||
- `REACT_APP_PREFER_ORDER`: OPTIONAL. This is a comma-separated list of device names in the order you prefer them to be displayed. | ||
For example, if you have devices named "Living Room", "Bedroom", and "Kitchen" and you want them to be displayed in that order, | ||
you would set this variable to `Living Room,Bedroom,Kitchen`. If none of them are playing, but you have another device playing, | ||
the currently playing will be displayed by default. As soon as any of your favorite devices start playing, it will be displayed instead. | ||
|
||
Launches the test runner in the interactive watch mode.\ | ||
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. | ||
Remember to restart your application after changing any of these variables for the changes to take effect. | ||
|
||
### `npm run build` | ||
## Running with Docker Compose | ||
|
||
Builds the app for production to the `build` folder.\ | ||
It correctly bundles React in production mode and optimizes the build for the best performance. | ||
You can easily run the application using Docker Compose. | ||
I have published a Docker image of the application on the GitHub Container Registry, which you can use directly. | ||
|
||
The build is minified and the filenames include the hashes.\ | ||
Your app is ready to be deployed! | ||
First, you need to create a `docker-compose.yml` file in your project directory with the following content: | ||
|
||
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. | ||
```yaml | ||
version: '3.8' | ||
services: | ||
plexart: | ||
container_name: plexart | ||
restart: unless-stopped | ||
image: ghcr.io/gloaysa/plexart:latest | ||
ports: | ||
- '5000:5000' | ||
``` | ||
### `npm run eject` | ||
## Roadmap | ||
[] - Properly handle errors | ||
[] - Libraries are hardcoded (only the first one is shown) | ||
[] - Display playlists | ||
[] - Add the ability to start albums/playlists | ||
[] - Display art from external services (tidal) | ||
**Note: this is a one-way operation. Once you `eject`, you can’t go back!** | ||
### Environment Variables | ||
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. | ||
To run this project, you need to set the following environment variables in your `.env` file: | ||
|
||
- `REACT_APP_PLEX_TOKEN`: Your Plex token. You can find it following this [guide](https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/). | ||
- `REACT_APP_HIDE_LIBRARY`: A comma-separated list of library sections you want to hide. | ||
|
||
## Development Guide | ||
|
||
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). | ||
It uses: | ||
|
||
- [zustand](https://github.com/pmndrs/zustand) for state management. | ||
- [wouter](https://github.com/molefrog/wouter) for routing. | ||
- [react-response-carousel](https://github.com/leandrowd/react-responsive-carousel) for the carousel component. | ||
|
||
### Available Scripts | ||
|
||
In the project directory, you can run: | ||
|
||
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. | ||
- `npm start`: Runs the app in the development mode. Open [http://localhost:3000](http://localhost:3000) to view it in the browser. | ||
- `npm test`: Launches the test runner in the interactive watch mode. | ||
- `npm run build`: Builds the app for production to the `build` folder. | ||
|
||
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. | ||
### Serving with Nginx | ||
|
||
## Learn More | ||
After building the project with `npm run build`, you can serve it with Nginx. Here's a basic configuration you can use: | ||
|
||
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). | ||
```nginx | ||
server { | ||
listen 3000; | ||
server_name localhost; | ||
To learn React, check out the [React documentation](https://reactjs.org/). | ||
location / { | ||
root /path/to/your/build/folder; | ||
try_files $uri /index.html; | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: '3.8' | ||
services: | ||
plexart: | ||
container_name: plexart | ||
restart: unless-stopped | ||
build: . | ||
ports: | ||
- '5000:5000' |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.