This project was bootstrapped with Create React App. Go to his readme.
This project is intended to replace the original idea from Google Play Music, where you could upload your music and manage your library on a cloud service. Without ads. Withoud fees.
This repository is hosting the code for the web app. It can't work standalone, it requires an API running and accesible. This API is also provided on his own repository.
Go to the Marmota Music API repository.
Very first of all, you need to copy the .env.example
file renaming it to .env
. Then, update the REACT_APP_API_BASE_URI
field with the correct value.
To build the project with a different .env file, you can repeat the previous step but renaming the file to .env.prod
, and then you have two options:
- Build using
.env
file:npm run build
. - Build using
.env.prod
file:npm run build:prod
.