Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lakshay2395/goroute
Goroute is a simple proxy server implementation similar to Nginx. It is implemented in GoLang. It uses memcached as caching provider.
https://github.com/lakshay2395/goroute
golang router
Last synced: about 2 months ago
JSON representation
Goroute is a simple proxy server implementation similar to Nginx. It is implemented in GoLang. It uses memcached as caching provider.
- Host: GitHub
- URL: https://github.com/lakshay2395/goroute
- Owner: lakshay2395
- Created: 2019-04-26T09:43:48.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-05-25T18:12:42.000Z (over 5 years ago)
- Last Synced: 2024-06-19T05:28:26.844Z (6 months ago)
- Topics: golang, router
- Language: Go
- Homepage:
- Size: 18.6 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GOROUTE
## Introduction
- Goroute is a proxy server implementation similar to Nginx. It is implemented in GoLang. It uses memcached as caching provider.## Steps to build gorouter
- Install pre-requisites
```
go get github.com/bradfitz/gomemcache/memcache
go get -u github.com/gorilla/mux
```
- Build Executable
```
go build -o goroute .
```## Running Goroute
```
goroute
-config
-env
-help
```## Important Points
### Providing dynamic environment values
- Provide values enwrapped with $ at both start and end. Ex - $namespace$
- Provide environment variable name for value in environment config file. Ex - "namespace" : "ODP_NAMESPACE"
- Sample config and enviroment files are present in repo.