From ee82084b1b0732ef0d7d25146e02419643f01978 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=20Jurmanovi=C4=87?= Date: Sun, 5 Sep 2021 12:24:35 +0200 Subject: [PATCH] fixed procfile --- Procfile | 2 +- run.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100755 run.sh diff --git a/Procfile b/Procfile index e1f62d9..8599090 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: 'go run ./cmd/api' \ No newline at end of file +web: './run.sh' \ No newline at end of file diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..7b13bd5 --- /dev/null +++ b/run.sh @@ -0,0 +1 @@ +go run ./cmd/api \ No newline at end of file