Contribute to Keploy UI (v1.0.0)
Make sure you're using Node version 14.x.x
1. Start the Keploy Server
There's a separate docker-compose docker-compose-dev.yaml
file which helps which exposes the mongo server and also builds the dockerfile from local code. The build
flag ensures that the binary is built again to reflect the latest code changes. There's also docker-compose-debug.yaml docker-compose-debug.yaml
which can help remote debugging the go server on port 4000.
git clone https://github.com/keploy/keploy.git && cd keploy
docker-compose -f docker-compose-dev.yaml up --build
2. Start the Keploy Console/UI
git clone https://github.com/keploy/ui.git && cd ui
npm i
For development, we'll add the API URL as keploy local server url running at http://localhost:6789
export GATSBY_API_URL=http://localhost:6789/api
Now let's start the Gatsby Server
gatsby develop
If you make some UI/design changes and want to add test data. In the new directory, clone test data repo :
git clone https://github.com/keploy/test-data.git && cd test-data
Within test-data directory
Install mongo-database-tools
brew tap mongodb/brew
brew install mongodb-database-tools
Restore DB
mongorestore dump/
You should now be able to see test data on the UI.