summaryrefslogtreecommitdiff
path: root/src/config.js
blob: 859bb169634cd8cf925d6d10f80ac28181ef079e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/**
  * @type {string}
  * The route where the server will listen for incoming text messages from Twilio.
  * @example
  * export const route = '/sms';
  */
const route = '/sms';

/**
  * @type {number}
  * The port on which the server will listen for incoming text messages from Twilio.
  * @example
  * export const port = 3000;
  */
const port = 3000;

/**
  * @type {string}
  * The name of the app as it will be displayed to users. You don't need to
  * include the words 'texting group' or similar, as these are part of the
  * message template already. A short description of the event or group of
  * people works best.
  * @example
  * export const appName = "Joe Bloggs' hillwalking gang";
  * @example
  * export const appName = 'Glen Coe meet';
  */
const appName = 'Glen Coe meet';

module.exports = {
  route,
  port,
  appName,
};