Skip to content

Commit

Permalink
chore: ok
Browse files Browse the repository at this point in the history
  • Loading branch information
evenstensberg committed Apr 13, 2019
1 parent 12fe974 commit da9e21a
Show file tree
Hide file tree
Showing 5 changed files with 8,595 additions and 4,993 deletions.
17 changes: 17 additions & 0 deletions .gcloudignore
@@ -0,0 +1,17 @@
# This file specifies files that are *not* uploaded to Google Cloud Platform
# using gcloud. It follows the same syntax as .gitignore, with the addition of
# "#!include" directives (which insert the entries of the given .gitignore-style
# file at that point).
#
# For more information, run:
# $ gcloud topic gcloudignore
#
.gcloudignore
# If you would like to upload your .git directory, .gitignore file or files
# from your .gitignore file, remove the corresponding line
# below:
.git
.gitignore

# Node.js dependencies:
node_modules/
17 changes: 17 additions & 0 deletions app.js
@@ -0,0 +1,17 @@
const express = require('express');

const app = express();

app.get('/', (req, res) => {
res
.status(200)
.send(':)')
.end();
});

// Start the server
const PORT = process.env.PORT || 8080;
app.listen(PORT, () => {
console.log(`App listening on port ${PORT}`);
console.log('Press Ctrl+C to quit.');
});
3 changes: 3 additions & 0 deletions app.yaml
@@ -0,0 +1,3 @@
# [START gae_quickstart_yaml]
runtime: nodejs10
# [END gae_quickstart_yaml]

0 comments on commit da9e21a

Please sign in to comment.