Skip to content

Commit

Permalink
Use gin for default make server command
Browse files Browse the repository at this point in the history
  • Loading branch information
bobheadxi committed Jun 4, 2018
1 parent 39d3e15 commit 8812839
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ docker-start:
client:
(cd ./client ; npm start)

# Starts the server
# Starts the server (exposed on port 9090)
.PHONY: server
server:
(cd ./server ; PORT=9090 ; go run main.go)
(cd ./server ; PORT=8080 ; gin -p 9090 -a 8080 -i run main.go)

0 comments on commit 8812839

Please sign in to comment.