-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull request #47: Mr/march merge go v1.17.9
Merge in AW/go-starter from mr/march-merge-go-v1.17.9 to master * commit 'e76ccc77fdeffb3736e11f4afd380f825a6435c1': update deps, go 1.17.9 never automatically load .env.local within test envs, but give this option to do so explicitly via test.DotEnvLoadLocalOrSkipTest(t) CHANGELOG multiline ENV inject in .hostenv drone fix and VSCode explicit shutdown on window close in devcontainer.json this is a Bad = commit potentially WIP dotenv test tests for .env overwrite, switch to github.com/subosito/gotenv v1.2.0 godotenv parsing .env.local and overriding ENV wip, still misses tests upgrade sqlboiler, mimetype, go-openapi/runtime, go-openapi/strfmt, go-openapi/validate, lib/pq, rogpeppe/go-internal, stretchr/testify, volatiletech/strmangle, google.golang.org/api, golang.org/x/crypto, golang.org/x/sys CHANGELOG Bump github.com/rs/zerolog from 1.25.0 to 1.26.1 enforce useage of errors.Is, errors.As and using %w for wrapping errors Bump github.com/labstack/echo/v4 from 4.6.1 to 4.7.2 changelog sqlboiler code gen changes v4.6.0 to v4.8.6 docs CHANGELOG ref update wiki procedure Go 1.17.8, tenv enable + fix os.Setenv to t.Setenv, bump pgFormatter, golangci-lint, lichen, watchexec, yq Dockerfile binary dependencies, add tmux Bump github.com/labstack/echo/v4 from 4.6.1 to 4.7.2 Bump github.com/rs/zerolog from 1.25.0 to 1.26.1 Bump github.com/volatiletech/sqlboiler/v4 from 4.6.0 to 4.8.6 Bump github.com/nicksnyder/go-i18n/v2 from 2.1.2 to 2.2.0
- Loading branch information
Showing
54 changed files
with
1,120 additions
and
572 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# This is a dotenv file. | ||
# Syntax Overview: https://hexdocs.pm/dotenvy/dotenv-file-format.html | ||
# Parser: github.com/subosito/gotenv | ||
|
||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
# DO NOT USE IN PRODUCTION! | ||
# DO NOT COMMIT INTO VERSION CONTROL! | ||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
|
||
# Why? | ||
# Use .env.local to easily inject secrets into your server config. | ||
|
||
# When? | ||
# Only use this locally, never in production. | ||
|
||
# What? | ||
# .env.local.sample is only a "sample" and should never hold any secret values! | ||
# .env.local is .gitignored. | ||
# .env.local is automatically loaded when running app <command>. | ||
# .env.local is **not** automatically loaded when running go test / make test. | ||
# .env.local ENV variables override OS ENV variables. | ||
# .env.local is applied by /internal/config's DefaultServiceConfigFromEnv(). | ||
|
||
# How? | ||
# Copy this file to `.env.local` to use it, e.g. with the following command: | ||
# cp .env.local.sample .env.local | ||
|
||
# Be kind to your colleagues and show them which typical ENV **keys** they | ||
# have to set (without setting the actual value within .env.local.sample): | ||
SECRET_KEY= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.