Skip to content

Commit 6e8a3f3

Browse files
committedDec 28, 2016
Migrated to Heroku
1 parent d3132d4 commit 6e8a3f3

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed
 

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ logs
33
*.log
44
npm-debug.log*
55

6+
# Heroku .env
7+
.env
8+
69
# Runtime data
710
pids
811
*.pid

‎Procfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: node app.js

‎app.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"name": "rdenn-is server",
3+
"description": "My personal website: rdenn.is",
4+
"repository": "https://github.com/rdennis/rdenn.is"
5+
}

‎package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,13 @@
66
"main": "app.js",
77
"scripts": {
88
"start": "node app.js",
9-
"deploy": "gcloud app deploy app.yaml",
109
"test": "echo \"Error: no test specified\" && exit 1"
1110
},
1211
"repository": {
1312
"type": "git",
1413
"url": "https://source.developers.google.com/p/rdenn-is/r/rdenn-is"
1514
},
16-
"license": "ISC",
15+
"license": "MIT",
1716
"dependencies": {
1817
"express": "^4.14.0",
1918
"pug": "^2.0.0-beta6"

0 commit comments

Comments
 (0)
Please sign in to comment.