Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrk21/go-web-config-sample
Samples of config for web application implemented by Go.
https://github.com/mrk21/go-web-config-sample
Last synced: about 1 month ago
JSON representation
Samples of config for web application implemented by Go.
- Host: GitHub
- URL: https://github.com/mrk21/go-web-config-sample
- Owner: mrk21
- License: mit
- Created: 2023-12-01T07:52:21.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-01T08:10:23.000Z (about 1 year ago)
- Last Synced: 2024-10-13T13:36:09.195Z (2 months ago)
- Language: Go
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-web-config-sample
Samples of config for web application implemented by Go.
## Dependencies
- Go: 1.21
- gopkg.in/yaml.v3
- dario.cat/mergo## Usage
```sh
# Run
go run .# Run with environment variables
HOGE=a go run .# Run on specified env
ENV=prod go run .# Run on test env
go test# Build and run
go build
./go-web-config-sample
```