Skip to content

Commit bc1f66c

Browse files
committed
Created a proper README
1 parent 37dcc96 commit bc1f66c

File tree

4 files changed

+82
-17
lines changed

4 files changed

+82
-17
lines changed

README.md

+20-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11
# Roborabbi
2-
> A Discord bot for TCCK
32

4-
Requests Sefaria data at users' behest
3+
Requirements:
4+
* Dotenv for working with project-specific environment variables
5+
* Discord.js for the bot's main functionality
6+
* Moment.js for human-friendly date formatting
7+
8+
Installation:
9+
10+
* Create a new Discord bot on https://discord.com/developers/applications
11+
* Define the `BOT_TOKEN` variable
12+
* Create a Geonames.com user account
13+
* Define the `GEONAMES_USERNAME` variable
14+
* `node i`
15+
* `node start`
16+
17+
Commands:
18+
19+
* `!parsha` returns this week's parsha
20+
* `!haftarah` returns this week's haftarah
21+
* `!daf` returns today's daf
22+
* `!shkiah` or `!zmanim` followed by the city name returns Shabbat times for that city

bot.js

+10-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,14 @@ const https = require('https');
44
const http = require('http');
55
const moment = require('moment');
66

7-
const envariables = dotenv.config();
8-
const envs = envariables.parsed;
7+
const dotEnv = dotenv.config({silent: true});
8+
let envariables;
9+
10+
if (dotEnv) {
11+
envariables = dotEnv;
12+
} else {
13+
envariables = process.env;
14+
}
915

1016
const client = new Discord.Client();
1117

@@ -65,7 +71,7 @@ const requestZmanim = (geoid, onSuccess, msg) => {
6571
};
6672

6773
const cityLookup = (city, onSuccess, furtherAction, msg) => {
68-
const REQUEST_URL = `${GEONAMES_URL}${city}&username=${envs.GEONAMES_USERNAME}`;
74+
const REQUEST_URL = `${GEONAMES_URL}${city}&username=${envariables.GEONAMES_USERNAME}`;
6975
http.get(REQUEST_URL, (resp) => {
7076
let data = '';
7177
resp.on('data', (chunk) => {
@@ -152,4 +158,4 @@ client.on('message', msg => {
152158
}
153159
});
154160

155-
client.login(envs.BOT_KEY);
161+
client.login(envariables.BOT_KEY);

package-lock.json

+51-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"dependencies": {
1313
"discord.js": "^12.2.0",
1414
"dotenv": "^8.2.0",
15+
"eslint-plugin-node": "^11.1.0",
1516
"moment": "^2.25.3"
1617
},
1718
"engines": {

0 commit comments

Comments
 (0)