Restfulapi server for getting your pokemon's IV, CP and other details including height, weight and nickname in JSON with a delightful webUI
- Simple restful api to query pokemon data
- WebUI to show pokemon details
- Dockerfile for fast deployment
- Login with google account
- Login with PTC account (testing)
- Sort by condition
- WebUI Refactor
npm install
npm install -g webpack
npm run all
- to acces the UI page
http://localhost:8887/
- to call the backend api
curl -H "Content-Type: application/json" -X POST -d '{"username":"xxxxx", "password": "xxxxx"}' http://localhost:8887/pokemon/list
npm run ui-dev
npm run ui-build
docker build -t pkm-journal:latest .
docker run -d -p 9999:8887 --name=pokemon-journal pkm-journal:latest