- Run
npm install - Create
config/keys.js
Visit https://developers.google.com/identity/sign-in/web/sign-in#before_you_begin to create the google auth credentials.
module.exports = {
google: {
clientID: "CLIENT ID HERE",
clientSecret: "SECRET KEY HERE"
},
mongodb: {
dbURI: "DB URI HERE"
},
session: {
cookieKey: "COOKIE NAME HERE"
}
}
- Run
node app
Note: Make sure to keep the database running first.