e8761ef4 by Barry

Merge branch 'master' of 23.239.3.252:barry/discordbot

2 parents 3e8d89c6 dcc808ac
Showing 1 changed file with 25 additions and 0 deletions
...@@ -18,3 +18,28 @@ pip install simplejson ...@@ -18,3 +18,28 @@ pip install simplejson
18 ```html 18 ```html
19 python hellsbot.py 19 python hellsbot.py
20 ``` 20 ```
21
22 ## Setup
23 To clear the database execute:
24
25 ```
26 rm creds.json
27 rm fortunes.json
28 rm deliveries.json
29 rm members.json
30
31 touch creds.json
32 touch fortunes.json
33 touch deliveries.json
34 touch members.json
35 ```
36
37 After the files have been created put the following data in your creds.json
38 ```
39 {
40 "username": "DISCORDEMAIL@SOMETHING.COM",
41 "password": "YOURPASS"
42 }
43 ```
44
45 Change the credentials for your email / pass on for your discord account.
...\ No newline at end of file ...\ No newline at end of file
......