From d2866df97fd12c53600a79afcd2017055aab26a4 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Wed, 4 Nov 2015 16:26:22 -0700 Subject: [PATCH] * Very minor update to docs --- docs/index.md | 41 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index 4147360f..b326b56d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1 +1,40 @@ -## Index \ No newline at end of file +# Introduction +ENiGMA½ is a modern from scratch BBS package written in Node.js. + +# Quickstart +TL;DR? This should get you started... + +1\. Clone +```bash +git clone https://github.com/NuSkooler/enigma-bbs.git +``` + +2\. Install dependencies +```bash +npm install +``` + +3\. Generate a SSH Private Key +Note that you can skip this step and disable the SSH server in your `config.hjson` if desired. + +```bash +openssl genrsa -des3 -out ./misc/ssh_private_key.pem 2048 +``` + +4\. Create a minimal config +Main system configuration is handled via `~/.enigma-bbs/config.hjson`. This is a HJSON file (compiliant JSON is also OK). + +```hjson +general: { + boardName: Super Awesome BBS +} +servers: { + ssh: { + privateKeyPass: YOUR_PK_PASS +} +messages: { + areas: [ + { name: "local_enigma_discusssion", desc: "ENiGMA Discussion", groups: [ "users" ] } + ] +} +``` \ No newline at end of file