Go to file
rui hildt a689b54233 Update documentation url 2020-09-29 01:02:24 +02:00
api Update documentation url 2020-09-29 01:02:24 +02:00
config Send email when adding participant 2020-09-04 12:41:09 +02:00
data Change db structure to allow inviteless accounts 2020-08-28 13:10:15 +02:00
helpers Send email when adding participant 2020-09-04 12:41:09 +02:00
middlewares Update config variables and add nodemailer's ones 2020-08-29 10:48:21 +02:00
services/email Send email when adding participant 2020-09-04 12:41:09 +02:00
.gitignore Initial commit 2020-03-20 13:25:37 +00:00
LICENSE Add basic server 2020-04-14 14:42:49 +02:00
README.md Update repo urls 2020-09-29 00:57:13 +02:00
index.js Replace bcrypt with bcryptjs / move env to config 2020-05-07 15:10:15 +02:00
knexfile.js Update config variables and add nodemailer's ones 2020-08-29 10:48:21 +02:00
package-lock.json Update config variables and add nodemailer's ones 2020-08-29 10:48:21 +02:00
package.json Update config variables and add nodemailer's ones 2020-08-29 10:48:21 +02:00

README.md

Meeting Planner Backend

Meeting Planner helps you find the best time to schedule a meeting across several timezones. It's based on the availibity of all participants for specific days.


URL https://meeting-planner-backend.herokuapp.com/


Backend architecture

Installation

0 | Requirements

Meeting Planner runs on virtually any system where Node.js is supported. This means it runs on Linux, macOS, Windows as well as container solutions such as Docker / Kubernetes and Heroku.

Versions

  • Postgres 9.5 or later
  • NodeJS 10.12 or later

KnexJS, the database driver used is compatible with other databases like MySQL. With small adaptation, it should be possible to use them, but this has not been tested.

1 | Configure Postgres to use UTC

** Make sure that Postgres database used is configured to UTC ** SET TIME ZONE 'UTC';

See Postgres Documentation

2 | Create and/or configure environement variables

  • Create a .env file at the root of the backend folder
  • Replace all variables noted with $ below, and save it to the .env file
NODE_ENV=development // This can't be changed for now
PORT=$port_number
DATABASE_URL=postgres://$db_user:$db_user_password@$hostname:5432/$db_name
JWT_SECRET=$long_random_characters

3 | Installation of packages with npm

  • npm i

4 | Migrate tables to database

  • npx knex migrate:latest

5 | Seed database with dummy content (optional)

Running this will add some accounts along with some meetings.

  • npx knex seed:run

Accounts created

Liza Emile Jack Cynthia Celine
liza@example.com emile@example.com jack@example.com cynthia@example.com celine@example.com
password password password password password