Skip to content

henvic/galaxy

Repository files navigation

galaxy

GoDoc Build Status Coverage Status codebeat badge Go Report Card

galaxy offers a drone navigation service (DNS).

Using

Querying a DNS location on sectorID 311:

curl -XPOST http://localhost:9000/v1/sectors/311/dns -H "Content-Type: application/json" -d '{"x": "33", "y": "42", "z": "13", "vel": "4.229"}'

Commands

Use make server to run the application or make apidocs to run the application with Swagger API documentation server turned on.

Docker

A Dockerfile is available in this directory as well.

You can build and run it with

docker build -t galaxy:latest docker run -p 9000:9000 galaxy

An image is not currently available at the Docker Hub registry.

Ports and configuration

The application runs at port 9000 and also exposes the Go profiler and debugger at local port 8081.

You might want to run cmd/server --help for a list of available flags.

The environment variable DEBUG sets the logging to debug mode.

Contributing

You can get the latest source code with go get -u github.com/henvic/galaxy

The following commands are available and require no arguments:

  • make test: run tests

In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Integration tests should be written as well.

On API changes, update the Swagger documentation accordingly using swag. Use make write-apidocs to recreate the API documentation.

Committing and pushing changes

The master branch of this repository on GitHub is protected:

  • force-push is disabled
  • tests MUST pass on Travis before merging changes to master
  • branches MUST be up to date with master before merging

Keep your commits neat and well documented. Try to always rebase your changes before publishing them.

Maintaining code quality

goreportcard can be used online or locally to detect defects and static analysis results from tools with a great overview.

Using go test and go cover are essential to make sure your code is covered with unit tests.

Always run make test before submitting changes.

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published