From 2bd65b2913cf1afe9cbf9ce3e2d6a79cc3b0cd3d Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Sun, 9 Jun 2024 20:36:37 +0100 Subject: I don't have a clue what I'm committing lol --- src/config.js | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/config.js (limited to 'src/config.js') diff --git a/src/config.js b/src/config.js new file mode 100644 index 0000000..859bb16 --- /dev/null +++ b/src/config.js @@ -0,0 +1,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, +}; -- cgit v1.2.3