Backend API For GCal Clone,
Authentication API
https://documenter.getpostman.com/view/14329009/2s93sgV9xH
https://documenter.getpostman.com/view/14329009/2s93sjVUjg
https://documenter.getpostman.com/view/14329009/2s93sjVUji
Google cal api is configured using 2 config files including the following .env variables.
Name | Description | Default | Required |
---|---|---|---|
PORT | HTTP Port for the application | 322 | True |
mongodb | URL for the mongoDB database connection | N/A | True |
ADMIN_EMAIL | Administration email to send logging info etc to | N/A | False |
SALT_ROUNDS | Salt rounds for hashing( larger > more secure but longer run times) | 13 | True |
and also a config.js
exports.conf = {
monitoring: {
// Should the monitoring server echo statistics every X second to the attached console.
outputStats: false, // Default: true
outputStatsEvery: 10000, // Default: 10000 ms eg 10 Seconds
}
}