From 9eb03eecfdcfe0a93f0abd43cb6d4f914638b9b6 Mon Sep 17 00:00:00 2001 From: Dovi Cowan Date: Mon, 20 Feb 2023 01:00:37 +0000 Subject: [PATCH] dokku support --- .buildpacks | 2 ++ app.json | 7 +++++++ 2 files changed, 9 insertions(+) create mode 100644 .buildpacks create mode 100644 app.json diff --git a/.buildpacks b/.buildpacks new file mode 100644 index 0000000..31191cc --- /dev/null +++ b/.buildpacks @@ -0,0 +1,2 @@ +https://github.com/heroku/heroku-buildpack-nodejs +https://github.com/dokku/buildpack-nginx.git#v10 \ No newline at end of file diff --git a/app.json b/app.json new file mode 100644 index 0000000..585f55d --- /dev/null +++ b/app.json @@ -0,0 +1,7 @@ +{ + "scripts": { + "dokku": { + "predeploy": "npm build" + } + } +} \ No newline at end of file