Compare commits

...

13 Commits

Author SHA1 Message Date
330848ceeb Merge pull request 'master' (#8) from master into dev
Reviewed-on: #8
2025-09-12 20:42:51 +03:00
8cdf0cbd8d Update .deploy/deploy-prod.yaml
All checks were successful
Deploy Dev / Build (pull_request) Successful in 1m20s
Deploy Dev / Push (pull_request) Successful in 22s
Deploy Dev / Deploy dev (pull_request) Successful in 29s
2025-09-12 20:42:31 +03:00
6a1f2d3d09 Update .deploy/deploy-dev.yaml 2025-09-12 20:42:09 +03:00
3fa0b815f3 Merge pull request 'fix' (#7) from master into dev
Reviewed-on: #7
2025-07-08 01:07:33 +03:00
Egor Matveev
6509e58b6e fix
All checks were successful
Deploy Dev / Build (pull_request) Successful in 6s
Deploy Dev / Push (pull_request) Successful in 12s
Deploy Dev / Deploy dev (pull_request) Successful in 19s
2025-07-08 02:05:25 +04:00
40287c4e14 Merge pull request 'fix' (#6) from master into dev
Reviewed-on: #6
2025-07-08 00:30:36 +03:00
Egor Matveev
28df4aef54 fix
All checks were successful
Deploy Dev / Build (pull_request) Successful in 7s
Deploy Dev / Push (pull_request) Successful in 13s
Deploy Dev / Deploy dev (pull_request) Successful in 18s
2025-07-08 01:30:10 +04:00
c996bb837a Merge pull request 'fix' (#5) from master into dev
Reviewed-on: #5
2025-07-08 00:28:42 +03:00
Egor Matveev
c15e950e02 fix
All checks were successful
Deploy Dev / Build (pull_request) Successful in 6s
Deploy Dev / Push (pull_request) Successful in 13s
Deploy Dev / Deploy dev (pull_request) Successful in 20s
2025-07-08 01:25:34 +04:00
8b9d1caed8 Merge pull request 'fix' (#4) from master into dev
Reviewed-on: #4
2025-07-08 00:22:20 +03:00
Egor Matveev
10f86f2f99 fix
All checks were successful
Deploy Dev / Build (pull_request) Successful in 6s
Deploy Dev / Push (pull_request) Successful in 13s
Deploy Dev / Deploy dev (pull_request) Successful in 36s
2025-07-08 01:21:29 +04:00
8629f2f468 Merge pull request 'fix' (#3) from master into dev
Reviewed-on: #3
2025-07-08 00:20:12 +03:00
Egor Matveev
556a45b0d4 fix
Some checks failed
Deploy Dev / Build (pull_request) Successful in 7s
Deploy Dev / Push (pull_request) Successful in 13s
Deploy Dev / Deploy dev (pull_request) Failing after 4s
2025-07-08 01:19:01 +04:00
5 changed files with 13 additions and 8 deletions

View File

@@ -21,7 +21,7 @@ services:
networks:
- b-jokes-net
environment:
MONGO_HOST: "mongo.develop.sprinthub.ru"
MONGO_HOST: "mongo.dev.chocomarsh.com"
MONGO_PASSWORD: $MONGO_PASSWORD_DEV
command: api
deploy:
@@ -35,7 +35,7 @@ services:
poll:
image: mathwave/sprint-repo:b-jokes
environment:
MONGO_HOST: "mongo.develop.sprinthub.ru"
MONGO_HOST: "mongo.dev.chocomarsh.com"
MONGO_PASSWORD: $MONGO_PASSWORD_DEV
command: poll
deploy:
@@ -49,8 +49,9 @@ services:
bot:
image: mathwave/sprint-repo:b-jokes
environment:
MONGO_HOST: "mongo.develop.sprinthub.ru"
MONGO_HOST: "mongo.dev.chocomarsh.com"
MONGO_PASSWORD: $MONGO_PASSWORD_DEV
STAGE: "development"
command: bot
networks:
- configurator

View File

@@ -21,7 +21,7 @@ services:
networks:
- b-jokes-net
environment:
MONGO_HOST: "mongo.sprinthub.ru"
MONGO_HOST: "mongo.chocomarsh.com"
MONGO_PASSWORD: $MONGO_PASSWORD_PROD
DEBUG: "false"
command: api
@@ -36,7 +36,7 @@ services:
poll:
image: mathwave/sprint-repo:b-jokes
environment:
MONGO_HOST: "mongo.sprinthub.ru"
MONGO_HOST: "mongo.chocomarsh.com"
MONGO_PASSWORD: $MONGO_PASSWORD_PROD
DEBUG: "false"
command: poll
@@ -51,8 +51,9 @@ services:
bot:
image: mathwave/sprint-repo:b-jokes
environment:
MONGO_HOST: "mongo.sprinthub.ru"
MONGO_HOST: "mongo.chocomarsh.com"
MONGO_PASSWORD: $MONGO_PASSWORD_PROD
STAGE: "production"
command: bot
networks:
- configurator

View File

@@ -32,7 +32,7 @@ jobs:
run: docker push mathwave/sprint-repo:b-jokes-nginx
deploy-dev:
name: Deploy dev
runs-on: [dev]
runs-on: [prod]
needs: push
steps:
- name: login
@@ -44,4 +44,4 @@ jobs:
- name: deploy
env:
MONGO_PASSWORD_DEV: ${{ secrets.MONGO_PASSWORD_DEV }}
run: docker stack deploy --with-registry-auth -c ./.deploy/deploy-dev.yaml b-jokes
run: docker stack deploy --with-registry-auth -c ./.deploy/deploy-dev.yaml b-jokes-development

View File

@@ -12,5 +12,7 @@ if arg == "poll":
jokes.poll_jokes()
elif arg == "api":
main.run()
elif arg == "bot":
main.bot()
else:
raise NotImplementedError("No arg specified!")

View File

@@ -55,6 +55,7 @@ def bot():
text = payload.get('text')
if not text:
return
text = text.lower()
for word in configurator.get_config('words'):
if word in text:
mes = 'Держи шутку!\n' + get_random()