Quick Start Guide
Once you are connected to the CLI , you will :
- Install Grizzly API CLI :
npm i @codeoncesoftware/grizzly-cli -g
- Connect using the api key :
grizzly config --apikey <your api key>
To display your API KEY :
grizzly show apikey
- Create your first microservice :
grizzly create microservice --name Demo
- Add an endpoint group :
grizzly add endpointgroup --microservice Demo --name FirstEndpointsGroup
This endpoint group will be added to the last version of your microservice.
- Create you first endpoint :
grizzly create endpoint --microservice Demo --path users --method GET --group FirstEndpointsGroup --collection demo_collection
And now your microservice , is ready to be used .