/Meli.QuasarFire

A little implementation in Go (API REST) to solve the "Operación Fuego de Quasar" challenge

Primary LanguageGoMIT LicenseMIT

Meli.QuasarFire 🔥

Small application for decode the secret message and get the location received from the other enemy starship!

Using Go and a lot of math :)

Technologies 🚀

  • Go v1.17
  • Gin Gonic v1.10.1
  • Wire v0.6.0

Startup 🚦

For run the project in localhost you can follow this steps:

  • Use make run for start the project without update the Wire files
  • For default, Gin will open the service on http://localhost:8080 and the Swagger on http://localhost:8080/swagger/index.html

Otherwise if you has made changes in the project you can use this commands:

  • Use make generate from the project root for generate the dependencies with Wire
  • Use make swagger from the project root for generate the Swagger Documentation
  • Use make all (recommended) is the plus between make generate make swagger and make run
  • Use make test for test the GetLocation and GetMessage methods

References

  • Implementation with Wire fro manage Dependency Injection taken from here
  • The math solution for discover the enemy starship from here
  • If you want to test easly the location, you can use this tool
  • Swagger for Gin Gonic from here