aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2020-03-22 11:53:13 -0600
committerBen Beltran <ben@nsovocal.com>2020-03-22 11:53:13 -0600
commit3841606684ee3d233266ad490905076a3562842c (patch)
tree407adde62e5181cae2b0d3611bc6c18c00a20d67 /bin
parent00a6e8aa8dd06f8a2bd7ccccdccfcb6215cf4841 (diff)
Remove server
Diffstat (limited to 'bin')
-rw-r--r--bin/forum21
1 files changed, 0 insertions, 21 deletions
diff --git a/bin/forum b/bin/forum
deleted file mode 100644
index 44bc408..0000000
--- a/bin/forum
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/env node
-import Config from '../config/config.js';
-import Forum from '../lib/forum.js';
-
-const internals = {};
-
-internals.forum = new Forum(Config);
-
-internals.main = async () => {
-
- try {
- await internals.forum.run();
- process.exit(0);
- }
- catch (err) {
- console.error(err.stack || err.message || err);
- process.exit(1);
- }
-};
-
-internals.main();