Skip to content

atomicfruitcake/goatway

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Goatway

What is this

Goatway is an API Gateway service written in Golang using the Gorilla/MUX framework with a Redis DB. Goatway maintains a register of all jobs received to maintain a log of the states of jobs being processed by downstream services

How do I use this

You can run the application using

go run /path/to/goatway/srv/main.go

Goatway uses GOLANG version 1.13

Note you must have a Redis server running. Ensure you have redis installed and start by using:

redis-server

If the application start successfully, you will see the message "Goatway HTTP Webserver is on port 9090".

You can conform this by going to running

curl http://localhost:9090/health

And you will receive the response OK

How do I build this

You can compile Goatway down into a binary by building with go build using the following commands:

go build /path/to/goatway/main.go

This will compile the program into a binary called main in your local directory. You can then run that program with:

./main

Docker Support

Goatway can be built and run with docker. You can build the docker image from the root of Goatway using:

docker build -t goatway .

You can then run the application with:

docker run goatway

However, you will need to be running a redis-server locally.

To run everything in containers, you can use docker-compose. In the root of Goatway, you can run

docker-compose up

Which will launch both Goatway and a redis-server, connect them together and run on port 9090

About

Golang API Gateway

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors