From b72508d882589691044a600015364bb218aa1154 Mon Sep 17 00:00:00 2001 From: Renan Lopes Ferreira Date: Fri, 22 Feb 2019 08:13:57 -0300 Subject: [PATCH] Changing port to 9898 --- main.go | 2 +- ui/.env | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index d5201b1..c086127 100644 --- a/main.go +++ b/main.go @@ -202,5 +202,5 @@ func main() { }) }) - r.Run() // listen and serve on 0.0.0.0:8080 + r.Run(":9898") // listen and serve on 0.0.0.0:8080 } diff --git a/ui/.env b/ui/.env index c1ac999..956ca84 100644 --- a/ui/.env +++ b/ui/.env @@ -1 +1 @@ -API=http://localhost:8080/api \ No newline at end of file +API=http://localhost:9898/api \ No newline at end of file