From aa96cddffd92086e5180515c4f551c71e51fab7b Mon Sep 17 00:00:00 2001 From: Ross Shannon <6339-rossshannon@users.noreply.gitlab.com> Date: Tue, 10 Dec 2024 00:33:04 +0000 Subject: [PATCH] Add heroku config --- .gitignore | 2 +- heroku.yml | 4 ++++ package.json | 6 ++++++ 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 heroku.yml diff --git a/.gitignore b/.gitignore index b512c09..3c3629e 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -node_modules \ No newline at end of file +node_modules diff --git a/heroku.yml b/heroku.yml new file mode 100644 index 0000000..1774585 --- /dev/null +++ b/heroku.yml @@ -0,0 +1,4 @@ +setup: + config: + NODE_ENV: production +stack: heroku-22 diff --git a/package.json b/package.json index ffbe72c..282db1f 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,12 @@ "private": "true", "name": "pinboard-bridge", "version": "1.1.1", + "description": "Pinboard API proxy service", + "main": "web.js", + "scripts": { + "start": "node web.js", + "dev": "node web.js" + }, "dependencies": { "axios": "^1.6.2", "express": "^4.18.2",