Skip to content

Commit 64de26d

Browse files
committed
including information about seeding
1 parent 50cc6a7 commit 64de26d

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,19 @@ npm install
2727

2828
* Create your config. There's a `config.json.example` file in the root. Edit it to include all your values. Refer to the configuration breakdown for more information about what does what. Save it as `config.json` and leave it in the root.
2929

30+
_Note: You will need to choose a password to complete the initial set up. Make sure it's something people aren't likely to guess_
31+
32+
* Seed your database
33+
```
34+
npm run seed
35+
```
36+
3037
* Run the bot!
3138
```
3239
npm start
3340
```
3441

35-
* Private message the bot in slack to get started
42+
* Private message the bot in slack to get started and follow the directions from there
3643

3744
## Universal Signal Format
3845
Signals are sent via Slack and are expected to be in the correct format:

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"main": "index.js",
66
"scripts": {
77
"start": "./node_modules/.bin/nodemon -e js,hbs ./index.js",
8+
"seed": "node seed.js",
89
"test": "./node_modules/.bin/eslint ."
910
},
1011
"repository": {

0 commit comments

Comments
 (0)