Skip to content

Commit

Permalink
Use default port 8080
Browse files Browse the repository at this point in the history
  • Loading branch information
reindert-vetter committed Nov 17, 2021
1 parent 810de6d commit bf6e868
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 43 deletions.
2 changes: 1 addition & 1 deletion config/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ var App = struct {
| specified here.
|
*/
Port: env.Int("APP_PORT"),
Port: env.IntOr("APP_PORT", 8080),

/*
|--------------------------------------------------------------------------
Expand Down
34 changes: 15 additions & 19 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ go 1.17
require (
github.com/confetti-framework/contract v0.3.0
github.com/confetti-framework/errors v0.11.0
github.com/confetti-framework/foundation v0.10.3
github.com/confetti-framework/foundation v0.10.5
github.com/confetti-framework/support v0.4.0
github.com/confetti-framework/syslog v0.1.1
github.com/confetti-framework/validation v0.1.0
golang.org/x/text v0.3.6
golang.org/x/text v0.3.7
)

require (
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
github.com/confetti-framework/baker v1.1.1 // indirect
github.com/go-sql-driver/mysql v1.6.0 // indirect
github.com/google/uuid v1.2.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.10.0 // indirect
Expand All @@ -27,27 +27,23 @@ require (
github.com/jackc/pgtype v1.8.1 // indirect
github.com/jackc/pgx/v4 v4.13.0 // indirect
github.com/jedib0t/go-pretty/v6 v6.2.4 // indirect
github.com/joho/godotenv v1.3.0 // indirect
github.com/juju/ansiterm v0.0.0-20180109212912-720a0952cc2a // indirect
github.com/lunixbochs/vtclean v0.0.0-20180621232353-2d01aacdc34a // indirect
github.com/manifoldco/promptui v0.8.0 // indirect
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/joho/godotenv v1.4.0 // indirect
github.com/manifoldco/promptui v0.9.0 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/motemen/go-quickfix v0.0.0-20200118031250-2a6e54e79a50 // indirect
github.com/motemen/go-quickfix v0.0.0-20210528191040-5ef99de20668 // indirect
github.com/peterh/liner v1.2.1 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/schollz/progressbar/v3 v3.8.0 // indirect
github.com/schollz/progressbar/v3 v3.8.3 // indirect
github.com/spf13/cast v1.4.1 // indirect
github.com/tidwall/gjson v1.7.5 // indirect
github.com/tidwall/match v1.0.3 // indirect
github.com/tidwall/pretty v1.1.0 // indirect
github.com/tidwall/gjson v1.11.0 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
github.com/vigneshuvi/GoDateFormat v0.0.0-20210204121036-67364dc23c79 // indirect
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
golang.org/x/mod v0.4.0 // indirect
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e // indirect
golang.org/x/crypto v0.0.0-20211117183948-ae814b36b871 // indirect
golang.org/x/mod v0.5.1 // indirect
golang.org/x/sys v0.0.0-20211117180635-dee7805ff2e1 // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
golang.org/x/tools v0.1.7 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
)
Loading

0 comments on commit bf6e868

Please sign in to comment.