A music recommendation service based on artificial intelligence.
- Spotify application ID (https://developer.spotify.com/dashboard/applications)
- Node
- NPM
- Express
- Sequelize (MySQL)
.
├── __tests__ # Automated tests (alternatively `spec` or `tests`)
├── docs # Documentation files (alternatively `doc`)
├── src # Source files (alternatively `lib` or `app`)
| ├── app
| | ├── controllers # Controllers folder
| | ├── middleware # Middleware folder
| | └── models # Models folder
| ├── config # Database and app config
| └── database
| └── migragrions # Migragion folder
├── .env # .env development/production environment variables file
├── .env.test # .env test environment variables file
├── .gitignore # .gitignore
├── LICENSE
├── package.json # Dependences info.
└── README.md
Clone the repo and install the dependencies.
git clone [email protected]:flavindias/deejairest.git
cd deejairestnpm installTo start the express server, run the following
npm run start:devOpen http://localhost:3000 and take a look around.