This is a simple Pokedex app, attempting to mirror https://www.pokemon.com/us/pokedex/.
You just need docker-compose and npm, and you should be good to go.
To initialize the project, first install all the dependencies :
npm installthen create the database :
npm run dbcreatethen simply start the project :
npm startnpm start automatically starts the database, so next time you want to start the project, you only have to call it.
You can also bring the database down manually with :
docker-compose down