integresql
integresql copied to clipboard
Help setting up IntegreSQL
Hey guys, this isn't actually an issue with IntegreSQL - i'm trying to demo IntegreSQL to replace our test DB provider in a Java project, to start out i'm using the docker-compose template and trying to interact with it using Postman.
Trying to send POST 127.0.0.1:5000/templates with -
{"hash": "some_string"} in the body is receiving a 404 not found response.
I'm not sure what I could be doing wrong at this step, I thought this was the initial interaction with IntegreSQL so I can't imagine what resource it's looking for.
Sorry for using this medium to contact you, I wasn't sure how else to do so. Thanks in advance
Hi @bar-ailo!
Oh, it seems we forgot to document the path prefixes properly, see templates router und admin router.
Please prepend /api/v1/templates to all calls except deleting all templates (which is /api/v1/admin). e.g.:
POST /api/v1/templates: initialize templatePUT api/v1/templates/{hash}: finalize templateDELETE /api/v1/templates/{hash}: discard a templateGET /api/v1/templates/{hash}/tests: get test databaseDELETE /api/v1/templates/{hash}/{id}: return test databaseDELETE /api/v1/admin/templates: delete all templates
Our current go client implementation should give you an overview on how we integrate with the server: integresql-client-go client.go
Sorry for the inconvenience.
Closed via https://github.com/allaboutapps/integresql/pull/16