Skip to content

Commit

Permalink
Merge pull request #85 from timoschlueter/bugfix/heroku-deployment
Browse files Browse the repository at this point in the history
Fix for Heroku Deployments
  • Loading branch information
timoschlueter authored Dec 29, 2022
2 parents ec09c28 + b533b5b commit 1146f83
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM node:18
LABEL version="2.0.0"
LABEL version="2.0.1"
LABEL description="Script written in TypeScript that uploads CGM readings from LibreLink Up to Nightscout"

# Create app directory
Expand Down
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
worker: npm start
worker: npm run start-heroku
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "nightscout-librelink-up",
"version": "2.0.0",
"version": "2.0.1",
"description": "Script written in TypeScript that uploads CGM readings from LibreLink Up to Nightscout",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"start": "npx ts-node --transpile-only src/index.ts",
"start-dev": "npx ts-node src/index.ts",
"start-heroku": "node dist/index.js",
"lint": "npx eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
Expand Down

0 comments on commit 1146f83

Please sign in to comment.