This application helps you to find out the information about a pokemon. You can add more pokemons and also update the existing information about a pokemon.
- Node >= v10.19.0
- npm >= 6.13.4
- MongoDB
- Clone the repository
$ git clone https://github.com/aditya81070/pokedex.git
- Change current working directory
$ cd pokedex
- Import data in your local mongo database
# Please make sure that `mongod` is running locally with port :27017 $ mongoimport --db=pokdex --collection=pokemons --file=./db/pokedex.json
- Install the dependencies
- Client (front-end): Crate
.env
file inclient
folder and paste content from.env.sample
in it.$ cd client $ cp .env.sample .env $ yarn #if you don't have `yarn`, use `npm install` # start client sever $ yarn start #with npm use `npm start`
- Server (back-end)
# In new terminal # Change current working directly to `pokedex` $ cd server $ npm install $ npm start
- Client (front-end): Crate
- Open local server in your favorite browser.