From bd6f42ab1a5810be81e79de7223ea0067097e09e Mon Sep 17 00:00:00 2001 From: sco1 Date: Tue, 5 Feb 2019 11:15:03 -0500 Subject: Add Lovefest configuration, update project documents Add Lovefest role & channel IDs to bot constants Update environment variable name for seasonalbot (was hacktoberbot) Update Contributor doc to reference pipenv guide rather than the deprecated Seasonalbot GH wiki --- bot/constants.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'bot/constants.py') diff --git a/bot/constants.py b/bot/constants.py index 4e09b448..9cb425f0 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -72,6 +72,11 @@ class Emojis: check = "\u2611" +class Lovefest: + channel_id = int(environ.get("LOVEFEST_CHANNEL_ID", 542272993192050698)) + role_id = int(environ.get("LOVEFEST_ROLE_ID", 542313670223331329)) + + class Hacktoberfest(NamedTuple): channel_id = 498804484324196362 voice_id = 514420006474219521 -- cgit v1.2.3 From 4c045aa3c85373a0218345ff4c47a328ddc40728 Mon Sep 17 00:00:00 2001 From: sco1 Date: Tue, 5 Feb 2019 14:52:29 -0500 Subject: Change Lovefest role ID --- bot/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bot/constants.py') diff --git a/bot/constants.py b/bot/constants.py index 9cb425f0..63f923d4 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -74,7 +74,7 @@ class Emojis: class Lovefest: channel_id = int(environ.get("LOVEFEST_CHANNEL_ID", 542272993192050698)) - role_id = int(environ.get("LOVEFEST_ROLE_ID", 542313670223331329)) + role_id = int(environ.get("LOVEFEST_ROLE_ID", 542431903886606399)) class Hacktoberfest(NamedTuple): -- cgit v1.2.3