Warrant is written in Go. Prior to cloning the repo and making any code changes, please ensure that your local Go environment is set up. Refer to the appropriate instructions for your platform here.
We follow GitHub's fork & pull request model. If you're looking to make code changes, it's easier to do so on your own fork and then contribute pull requests back to the Warrant repo. You can create your own fork of the repo here.
If you'd just like to checkout the source to build & run, you can clone the repo directly:
git clone [email protected]:warrant-dev/warrant.git
Note: It's recommended you clone the repository into a directory relative to your GOPATH
(e.g. $GOPATH/src/github.com/warrant-dev
)
To set up your server config file, refer to our configuration doc.
After the datastore and configuration are set, build & start the server:
cd cmd/warrant
make dev
./bin/warrant
Once the server is running, you can make API requests using curl, any of the Warrant SDKs, or your favorite API client:
curl -g "http://localhost:port/v1/object-types" -H "Authorization: ApiKey YOUR_KEY"
go test -v ./...
The Warrant repo contains a suite of e2e tests that test various combinations of API requests. These tests are defined in json files within the tests/
dir and are executed using APIRunner. These tests can be run locally:
go install github.com/warrant-dev/apirunner/cmd/apirunner@latest
APIRunner tests run based on a simple config file that you need to create in the tests/
directory:
touch tests/apirunner.conf
Add the following to your tests/apirunner.conf
(replace with your server url and api key):
{
"baseUrl": "YOUR_SERVER_URL",
"headers": {
"Authorization" : "ApiKey YOUR_API_KEY"
}
}
First, make sure your server is running:
./bin/warrant
In a separate shell, run the tests:
cd tests/
apirunner . '.*'