Made by @thejunglegiant with Node.js, special for int20h hackathon.
Now it should be hosted on Heroku at https://muz.dkaraush.me/.
This backend app is written to serve content for Musical Akinator frontend.
This app uses express web framework with these API's:
- audd.io for recognizing and searching tracks (personal api_token needed)
- Genius API for obtaining track's info (personal api_token needed)
- Deezer API also for obtaining info about tracks (no api_token)
- Clone repo
- Run
npm install
- Add your
settings.js
file:module.exports = { AUDD_TOKEN: 'your_token', GENIUS_TOKEN: 'your_token', };
- Deploy the server using heroku official guide