This application sets to music FOCUS libraries and components.
Clone or download project code sources.
Install package dependencies :
npm i
You don't have your own server API, you can use our mock API by launching this command:
node api
The mock API serve fake datas at this URL : http://localhost:9999/
.
The section below explain how to plug your own API.
To launch webapp server :
npm start
Open you browser and access to this URL : http://localhost:3000/
Edit config.webpack.js
file and replace API_ROOT
var by root your root API URL in this section :
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.DefinePlugin({
API_ROOT: '"http://localhost:9999"'
})
],
API must respect those rules : https://gist.github.com/pierr/86159b709242ea96c71c