Compare commits
11 Commits
8629f2f468
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
| 330848ceeb | |||
| 8cdf0cbd8d | |||
| 6a1f2d3d09 | |||
| 3fa0b815f3 | |||
|
|
6509e58b6e | ||
| 40287c4e14 | |||
|
|
28df4aef54 | ||
| c996bb837a | |||
|
|
c15e950e02 | ||
| 8b9d1caed8 | |||
|
|
10f86f2f99 |
@@ -21,7 +21,7 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- b-jokes-net
|
- b-jokes-net
|
||||||
environment:
|
environment:
|
||||||
MONGO_HOST: "mongo.develop.sprinthub.ru"
|
MONGO_HOST: "mongo.dev.chocomarsh.com"
|
||||||
MONGO_PASSWORD: $MONGO_PASSWORD_DEV
|
MONGO_PASSWORD: $MONGO_PASSWORD_DEV
|
||||||
command: api
|
command: api
|
||||||
deploy:
|
deploy:
|
||||||
@@ -35,7 +35,7 @@ services:
|
|||||||
poll:
|
poll:
|
||||||
image: mathwave/sprint-repo:b-jokes
|
image: mathwave/sprint-repo:b-jokes
|
||||||
environment:
|
environment:
|
||||||
MONGO_HOST: "mongo.develop.sprinthub.ru"
|
MONGO_HOST: "mongo.dev.chocomarsh.com"
|
||||||
MONGO_PASSWORD: $MONGO_PASSWORD_DEV
|
MONGO_PASSWORD: $MONGO_PASSWORD_DEV
|
||||||
command: poll
|
command: poll
|
||||||
deploy:
|
deploy:
|
||||||
@@ -49,8 +49,9 @@ services:
|
|||||||
bot:
|
bot:
|
||||||
image: mathwave/sprint-repo:b-jokes
|
image: mathwave/sprint-repo:b-jokes
|
||||||
environment:
|
environment:
|
||||||
MONGO_HOST: "mongo.develop.sprinthub.ru"
|
MONGO_HOST: "mongo.dev.chocomarsh.com"
|
||||||
MONGO_PASSWORD: $MONGO_PASSWORD_DEV
|
MONGO_PASSWORD: $MONGO_PASSWORD_DEV
|
||||||
|
STAGE: "development"
|
||||||
command: bot
|
command: bot
|
||||||
networks:
|
networks:
|
||||||
- configurator
|
- configurator
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- b-jokes-net
|
- b-jokes-net
|
||||||
environment:
|
environment:
|
||||||
MONGO_HOST: "mongo.sprinthub.ru"
|
MONGO_HOST: "mongo.chocomarsh.com"
|
||||||
MONGO_PASSWORD: $MONGO_PASSWORD_PROD
|
MONGO_PASSWORD: $MONGO_PASSWORD_PROD
|
||||||
DEBUG: "false"
|
DEBUG: "false"
|
||||||
command: api
|
command: api
|
||||||
@@ -36,7 +36,7 @@ services:
|
|||||||
poll:
|
poll:
|
||||||
image: mathwave/sprint-repo:b-jokes
|
image: mathwave/sprint-repo:b-jokes
|
||||||
environment:
|
environment:
|
||||||
MONGO_HOST: "mongo.sprinthub.ru"
|
MONGO_HOST: "mongo.chocomarsh.com"
|
||||||
MONGO_PASSWORD: $MONGO_PASSWORD_PROD
|
MONGO_PASSWORD: $MONGO_PASSWORD_PROD
|
||||||
DEBUG: "false"
|
DEBUG: "false"
|
||||||
command: poll
|
command: poll
|
||||||
@@ -51,8 +51,9 @@ services:
|
|||||||
bot:
|
bot:
|
||||||
image: mathwave/sprint-repo:b-jokes
|
image: mathwave/sprint-repo:b-jokes
|
||||||
environment:
|
environment:
|
||||||
MONGO_HOST: "mongo.sprinthub.ru"
|
MONGO_HOST: "mongo.chocomarsh.com"
|
||||||
MONGO_PASSWORD: $MONGO_PASSWORD_PROD
|
MONGO_PASSWORD: $MONGO_PASSWORD_PROD
|
||||||
|
STAGE: "production"
|
||||||
command: bot
|
command: bot
|
||||||
networks:
|
networks:
|
||||||
- configurator
|
- configurator
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ jobs:
|
|||||||
run: docker push mathwave/sprint-repo:b-jokes-nginx
|
run: docker push mathwave/sprint-repo:b-jokes-nginx
|
||||||
deploy-dev:
|
deploy-dev:
|
||||||
name: Deploy dev
|
name: Deploy dev
|
||||||
runs-on: [dev]
|
runs-on: [prod]
|
||||||
needs: push
|
needs: push
|
||||||
steps:
|
steps:
|
||||||
- name: login
|
- name: login
|
||||||
|
|||||||
@@ -12,5 +12,7 @@ if arg == "poll":
|
|||||||
jokes.poll_jokes()
|
jokes.poll_jokes()
|
||||||
elif arg == "api":
|
elif arg == "api":
|
||||||
main.run()
|
main.run()
|
||||||
|
elif arg == "bot":
|
||||||
|
main.bot()
|
||||||
else:
|
else:
|
||||||
raise NotImplementedError("No arg specified!")
|
raise NotImplementedError("No arg specified!")
|
||||||
|
|||||||
1
main.py
1
main.py
@@ -55,6 +55,7 @@ def bot():
|
|||||||
text = payload.get('text')
|
text = payload.get('text')
|
||||||
if not text:
|
if not text:
|
||||||
return
|
return
|
||||||
|
text = text.lower()
|
||||||
for word in configurator.get_config('words'):
|
for word in configurator.get_config('words'):
|
||||||
if word in text:
|
if word in text:
|
||||||
mes = 'Держи шутку!\n' + get_random()
|
mes = 'Держи шутку!\n' + get_random()
|
||||||
|
|||||||
Reference in New Issue
Block a user