Skip to content
This repository has been archived by the owner on Jul 23, 2020. It is now read-only.

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cole Connelly committed Jan 2, 2020
0 parents commit 8d42d57
Show file tree
Hide file tree
Showing 409 changed files with 65,475 additions and 0 deletions.
16 changes: 16 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
var express = require("express"),
app = express(),
session = require("express-session"),
bodyParser = require("body-parser"),
methodOverride = require("method-override");

var routes = require("./routes/index");

app.use(bodyParser.urlencoded({extended: true}));
app.set("view engine", "ejs");
app.use(express.static(__dirname + "/public"));
app.use(methodOverride("_method"));

app.use(routes);

app.listen(process.env.PORT);
1 change: 1 addition & 0 deletions goorm.manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"author":"cdconn00_6rs1avxwi","name":"connellyc","type":"nodejs","detailedtype":"default","description":"","date":"2020-01-02T17:24:10.000Z","plugins":{"goorm.plugin.nodejs":[{"plugin.nodejs.main":"main","plugin.nodejs.source_path":"./","plugin.nodejs.run_option":"","plugin.nodejs.run_on":"console","plugin.nodejs.log_path":"./server.log","name":"nodejs"}]},"is_user_plugin":false,"storage":"container","project_domain":[{"id":"cdconn00_6rs1avxwi","url":"connellyc-psnhv.run.goorm.io","port":"3000"}],"author_email":"[email protected]","author_name":"cdconn00","ignore_patterns":[]}
1 change: 1 addition & 0 deletions node_modules/.bin/mime

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

236 changes: 236 additions & 0 deletions node_modules/accepts/HISTORY.md

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

23 changes: 23 additions & 0 deletions node_modules/accepts/LICENSE

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

Loading

0 comments on commit 8d42d57

Please sign in to comment.