-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[docs/chore]: docker-compose added and read-me updated
- Loading branch information
1 parent
d3b4e7c
commit f20825a
Showing
3 changed files
with
28 additions
and
3 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 |
---|---|---|
@@ -1,3 +1,13 @@ | ||
# Upwork SlackBot | ||
|
||
## TO-DO | ||
## Get SLACK_BOT_TOKEN and SLACK_APP_TOKEN | ||
|
||
|
||
## Update the ENV variables in docker-compose | ||
|
||
|
||
## Run the Bot | ||
|
||
``` | ||
docker-compose up | ||
``` |
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,14 @@ | ||
version: '3' | ||
services: | ||
upwork_slackbot: | ||
image: upwork_slackbot:1.0 | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
environment: | ||
- CONSUMER_KEY="" | ||
- CONSUMER_SECRET="" | ||
- QUERY=Python | ||
- SLACK_BOT_TOKEN="" | ||
- SLACK_APP_TOKEN="" | ||
- CHANNEL_ID=C05856EUC8L |
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