This repository was archived by the owner on Sep 29, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🧑💻 Add example files for to assist in development #24
- Loading branch information
1 parent
582ee58
commit a654064
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Get this from your application the Discord Developer Portal https://discord.com/developers/applications | ||
DISCORD_TOKEN=[] | ||
# Get this from wherever your hosting your MongoDB database (ex. MongoDB Atlas) | ||
MONGO_URI=[] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: '3' | ||
|
||
services: | ||
suggestions-bot: | ||
container_name: suggestions-bot | ||
build: | ||
context: . | ||
dockerfile: ./Dockerfile | ||
environment: | ||
- DISCORD_TOKEN=${DISCORD_TOKEN} | ||
env_file: | ||
- .env |