Skip to content

OrzEntertainment/ReserveMySpot

 
 

Repository files navigation

Build Status Build Status

ReserveMySpot

Simple reservation program that runs on NodeJS.

Here is a list of dependancies:

  • express.js
  • MongoDB
  • bodyParser
  • handlebars
  • express-session
  • mongoose
  • passport-google-oauth

To run, in command prompt, navigate to the directory and enter:

nodejs server.js

then navigate to http://localhost:3000/ in any browser

FAQ

It's not running and is giving me a lot of errors?
You are missing a file called keys.js. This file should follow the format of:

module.exports = {
    google: {
        clientID: "Your google client ID",
        clientSecret: "Your google client secret",
    },
    mongodb: {
        dbURI: "Mongodb URI"
    },
    session: {
        cookieKey: 'Any cookie key'
    }
};

About

Reservation program for users build with NodeJS

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 51.8%
  • JavaScript 38.3%
  • CSS 9.9%