File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed
Filter options
Expand file tree Collapse file tree 2 files changed +15
-3
lines changed
Original file line number Diff line number Diff line change @@ -10,4 +10,14 @@ https://discord.com/developers/applications
10
10
Click bot, then reveal token. Also use the bot permissiosn calculator
11
11
12
12
Construct a OAUTH URL:
13
- https://discord.com/oauth2/authorize?client_id=CLIENT_ID_GOES_HERE&scope=bot&permissions=8
13
+ https://discord.com/oauth2/authorize?client_id=CLIENT_ID_GOES_HERE&scope=bot&permissions=8
14
+
15
+
16
+ ## Example manual build
17
+ ``` shell
18
+ docker image build -t bradmorg/ubuntu:dbot /home/pi/discord-bot
19
+ docker push bradmorg/ubuntu:dbot
20
+ docker stop discordbot
21
+ docker rm discordbot
22
+ docker run --name discordbot --restart always -d -e $TOKEN bradmorg/ubuntu:dbot
23
+ ```
Original file line number Diff line number Diff line change 14
14
15
15
join_greeting = '''Welcome to the DevOps Journey Discord! We are a new community that embraces everything DevOps related.
16
16
17
- The community is still new so sometimes our channel can be quiet but please feel free to ask questions are bring up a topic in our <#devops> channel .
17
+ #Resources Channel has plenty of free learning resources .
18
18
19
- Don't forget to check out our #test channel for plenty of free learning resources!
19
+ #Devops Channel to spark up any devops related questions or conversations.
20
+
21
+ YouTube Channel: https://www.youtube.com/channel/UC4Snw5yrSDMXys31I18U3gg
20
22
'''
21
23
22
24
class MyClient (discord .Client ):
You can’t perform that action at this time.
0 commit comments