We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents df946de + 768e07e commit fce2476Copy full SHA for fce2476
.vscode/launch.json
@@ -13,7 +13,7 @@
13
"CONNECTION_TOKEN": "memphis",
14
"ROOT_USER": "root",
15
"MEMPHIS_HOST":"localhost",
16
- "HTTP_PORT": ":3000"
+ "HTTP_PORT": "3000"
17
}
18
19
]
conf/config.json
@@ -1,5 +1,5 @@
1
{
2
- "HTTP_PORT": ":3000",
+ "HTTP_PORT": "3000",
3
"MEMPHIS_HOST": "localhost",
4
5
main.go
@@ -24,5 +24,5 @@ func main() {
24
25
26
router.SetupRoutes(app, conn)
27
- app.Listen(configuration.HTTP_PORT)
+ app.Listen(":" + configuration.HTTP_PORT)
28
0 commit comments