Skip to content

Commit

Permalink
edited readme
Browse files Browse the repository at this point in the history
  • Loading branch information
biohackerellie committed May 1, 2023
1 parent c09dcc2 commit 2f3e469
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions Custom-Template/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
VITE_API_URL=http://localhost:3001
VITE_HOME_TITLE=Your Music App
VITE_SPOTIFY_LINK=https://open.spotify.com/artist/0csjx5EnVlhizAs1mwMwrW?si=e2f8G0_nRL2pd1vM7tqQhQ
VITE_APPLE_LINK=https://music.apple.com/us/artist/ellie-kerns/1572324391
VITE_AMAZON_LINK=https://music.amazon.com/artists/B09BZQZQZS/ellie-kerns
VITE_YOUTUBE_LINK=https://www.youtube.com/channel/UCVrCmyRUGf9KQZ7r6R8_ZeQ
VITE_SOUNDCLOUD_LINK=https://soundcloud.com/elliekerns
SITE_URL=http://localhost:3030



10 changes: 5 additions & 5 deletions Custom-Template/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
container_name: music-app-frontend
restart: unless-stopped
ports:
- '3030:80' # change to your desired port on the left side of the colon. Do not touch the right side
- '3030:80' # change to your desired port on the left side of the colon. Do not touch the right side, and make sure to update the port in your .env file
depends_on:
- server
networks:
Expand All @@ -31,10 +31,10 @@ services:
container_name: music-app-server
restart: unless-stopped
ports:
- '3001:3001' # change to your desired port on the left side of the colon. Do not touch the right side
volumes:
- /path/to/images:/app/public # change to your desired path on the left side of the colon. It must be in a folder called Images. Do not touch the right side
- /path/to/music:/app/public # change to your desired path on the left side of the colon. It must be in a folder called Music. Do not touch the right side
- '3001:3001' # change to your desired port on the left side of the colon. Do not touch the right side and make sure to update the port in your .env file
#volumes:
#- /path/to/images:/app/public # change to your desired path, if not using the default, on the left side of the colon. It must be in a folder called Images. Do not touch the right side
#- /path/to/music:/app/public # change to your desired path, if not using the default, on the left side of the colon. It must be in a folder called Music. Do not touch the right side
networks:
- mynetwork
environment:
Expand Down

0 comments on commit 2f3e469

Please sign in to comment.