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 install
then create the database :
npm run dbcreate
then simply start the project :
npm start
npm 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