-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 885377b
Showing
5 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
node_modules | ||
.env | ||
Dockerfile | ||
docker-compose.yml | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"name": "Node.js Water Server", | ||
"description": "Server for water", | ||
"repository": "https://github.com/gtg092x/water-server", | ||
"logo": "http://node-js-sample.herokuapp.com/node.svg", | ||
"keywords": ["node", "express"], | ||
"image": "heroku/nodejs" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
var express = require('express'); | ||
var app = express(); | ||
var port = (process.env.PORT || 5000); | ||
|
||
app.get('/', function (req, res) { | ||
res.send('Hello World!'); | ||
}); | ||
|
||
app.listen(port, function () { | ||
console.log('Example app listening on port ' + port); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "remoteserver", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"dependencies": { | ||
"bookshelf": "^0.9.1", | ||
"express": "^4.13.3", | ||
"knex": "^0.9.0", | ||
"pg": "^4.4.3", | ||
"sqlite3": "^3.1.1" | ||
}, | ||
"devDependencies": { | ||
"babel-cli": "^6.4.0" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/gtg092x/water-server" | ||
}, | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"author": "", | ||
"license": "ISC" | ||
} |
Empty file.