rjatkinson2 / Eventfull

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#Eventfull

Advanced event staffing application for catering companies.

Action Bar

(Additional screenshots below)

Contributing

See CONTRIBUTING.md for contribution guidelines.

Stories in Ready

Usage

Pull down the repository

$ git clone https://github.com/Eventfull/Eventfull.git

Add server/calendar/configuration.js, show below:
module.exports = {
  google_clientID : 'google-client-id-here',
  google_clientSecret: 'google-client-secret-here',
  google_CB: 'google-cb-here',
  google_scope: ['scope-details-here']
};
Add server/db/configuration.js, show below:
module.exports = {
  production: {
    db_name: 'eventfull_production',
    username: 'root',
    password: ''
  },

  development: {
    db_name: 'eventfull_development',
    username: 'root',
    password: ''
  },

  test: {
    db_name: 'eventfull_test',
    username: 'root',
    password: ''
  },
  database: {
    db_name: 'eventfull',
    username: 'root',
    password: ''
  }
};
Seed the database on the first run

$ SEED=true NODE_ENV=development node server/server.js

All future runs

$ NODE_ENV=development nodemon server/server.js

Screenshots

Month View

Week View

Action Bar

Employee List

About


Languages

Language:JavaScript 91.6%Language:CSS 7.1%Language:HTML 1.3%