Skip to content

Commit

Permalink
Change default API port to 8080 (#375)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunghoon Kang authored May 17, 2023
1 parent d3ce3d4 commit 9e9828b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func NewAPIConfig() APIConfig {
return APIConfig{
BaseConfig: newBaseConfig(),
Host: os.MustGetEnv("HOST", "0.0.0.0"),
Port: MustAtoi(os.MustGetEnv("PORT", "50051")),
Port: MustAtoi(os.MustGetEnv("PORT", "8080")),
GracefulShutdownTimeout: MustParseDuration(
os.MustGetEnv("GRACEFUL_SHUTDOWN_TIMEOUT", "30s"),
),
Expand Down

0 comments on commit 9e9828b

Please sign in to comment.