From ed835dce7b0a8381642fc7b7787a78667a4250db Mon Sep 17 00:00:00 2001 From: Will McCutchen <will@mccutch.org> Date: Sat, 12 Aug 2017 20:02:08 -0700 Subject: [PATCH] Initial apex/up deploy support --- .upignore | 6 ++++++ up.json | 8 ++++++++ 2 files changed, 14 insertions(+) create mode 100644 .upignore create mode 100644 up.json diff --git a/.upignore b/.upignore new file mode 100644 index 0000000..08a3af3 --- /dev/null +++ b/.upignore @@ -0,0 +1,6 @@ +.git +cmd +dist +httpbin +static +Dockerfile diff --git a/up.json b/up.json new file mode 100644 index 0000000..c1bfcfa --- /dev/null +++ b/up.json @@ -0,0 +1,8 @@ +{ + "name": "go-httpbin", + "profile": "up", + "hooks": { + "build": "GOOS=linux GOARCH=amd64 make && mv dist/go-httpbin server", + "clean": "rm -f server" + } +} -- GitLab