Angular2 application for generating Salsa music through NLP concepts.
-
backend
directory contains the flask backend with the methods that do the generation process. -
front
directory contains the angular2 frontend based on angular-webpack-starter
-
Clone the repo
git clone https://github.com/brayanrodbajo/MusicGeneration.git
-
Install the backend related requirements and run. The following will start a flask-server on
localhost:8080
cd backend sh install.sh python3 run.py
-
Install frontend related dependencies
- Easiest way to handle node related dependencies is to install nvm
- Once you have node installed, install the project's dependencies
cd front # install project related dependencies npm install # run server npm run server
-
Now navigate to
http://localhost:3000