* All I do right now is edit README.md...

This commit is contained in:
Bryan Ashby 2015-10-29 22:55:13 -06:00
parent e299b9269e
commit ba4f407c90
1 changed files with 9 additions and 5 deletions

View File

@ -47,11 +47,13 @@ ENiGMA has been tested with many terminals. However, the following are suggested
## Installation ## Installation
1. Clone: **Clone**
```bash ```bash
git clone https://github.com/NuSkooler/enigma-bbs.git git clone https://github.com/NuSkooler/enigma-bbs.git
``` ```
2. Create **~/.enigma-bbs/config.hjson**. Example: **Create a Config**
Create new *~/.enigma-bbs/config.hjson* file. Example:
```hjson ```hjson
general: { general: {
boardName: Super Awesome BBS boardName: Super Awesome BBS
@ -62,11 +64,13 @@ messages: {
] ]
} }
``` ```
3. Install dependencies:
**Install dependencies**
```bash ```bash
npm install npm install
``` ```
4. Generate a PK for SSH usage:
**Generate a PK for SSH usage**
```bash ```bash
mkdir misc mkdir misc
openssl genrsa -des3 -out ./misc/ssh_private_key.pem 2048 openssl genrsa -des3 -out ./misc/ssh_private_key.pem 2048
@ -81,7 +85,7 @@ servers: {
} }
``` ```
5. Launch: **Launch**
```bash ```bash
node main.js node main.js
``` ```