Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closes #3604: Announce Sign-Ups in Slack #3773

Merged
merged 38 commits into from
Dec 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
0015eea
test: add updating the os
manekenpix Dec 3, 2022
4200194
test: add updating the os
manekenpix Dec 3, 2022
8d6abc4
Rebase with master
SerpentBytes Nov 30, 2022
46c01d4
test: add updating the os
manekenpix Dec 3, 2022
25b5561
Merge branch 'master' into issue-3604
manekenpix Dec 3, 2022
4835c41
test: add updating the os
manekenpix Dec 3, 2022
f7bda92
Merge branch 'master' into issue-3604
manekenpix Dec 3, 2022
436251b
test: add updating the os
manekenpix Dec 3, 2022
3d4736a
Merge branch 'master' into issue-3604
manekenpix Dec 3, 2022
c4db9cd
test: add updating the os
manekenpix Dec 3, 2022
4dbe702
Merge branch 'master' into issue-3604
manekenpix Dec 3, 2022
e30dcf6
test: add updating the os
manekenpix Dec 3, 2022
2e37668
Merge branch 'master' into issue-3604
manekenpix Dec 3, 2022
4570717
test: add updating the os
manekenpix Dec 3, 2022
886a711
Merge branch 'master' into issue-3604
manekenpix Dec 3, 2022
83656fe
test: add updating the os
manekenpix Dec 3, 2022
2f09b8c
Merge branch 'master' into issue-3604
manekenpix Dec 3, 2022
333402c
test: add updating the os
manekenpix Dec 3, 2022
958e445
Merge branch 'master' into issue-3604
manekenpix Dec 3, 2022
09f143b
test: add updating the os
manekenpix Dec 3, 2022
f9c3699
Merge branch 'master' into issue-3604
manekenpix Dec 3, 2022
b6e64bd
test: add updating the os
manekenpix Dec 3, 2022
2cc4f81
Merge branch 'master' into issue-3604
manekenpix Dec 3, 2022
7adb5b1
test: add updating the os
manekenpix Dec 3, 2022
550b5aa
Merge branch 'master' into issue-3604
manekenpix Dec 3, 2022
c0af88c
test: add updating the os
manekenpix Dec 3, 2022
cfba343
Merge branch 'master' into issue-3604
manekenpix Dec 3, 2022
2e46f81
test: add updating the os
manekenpix Dec 3, 2022
61ad5ff
Merge branch 'master' into issue-3604
manekenpix Dec 3, 2022
81a8c11
test: add updating the os
manekenpix Dec 3, 2022
04047f2
Merge branch 'master' into issue-3604
manekenpix Dec 3, 2022
a51adae
test: add updating the os
manekenpix Dec 3, 2022
aa37cbc
Merge branch 'master' into issue-3604
manekenpix Dec 3, 2022
94eec21
test: install playwright deps
manekenpix Dec 3, 2022
33466f5
Merge branch 'master' into issue-3604
manekenpix Dec 3, 2022
b180844
Merge branch 'master' into issue-3604
manekenpix Dec 3, 2022
182da7a
Remove a line as requested
SerpentBytes Dec 3, 2022
1a6f3b9
Remove sudo command as requested
SerpentBytes Dec 3, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions config/env.development
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,11 @@ JWT_AUDIENCE=http://localhost
# How long should a JWT work before it expires
JWT_EXPIRES_IN=1h

# Slack Bolt config
SLACK_BOT_TOKEN=
SLACK_BOT_SIGNING_SECRET=
SLACK_BOT_CHANNEL_ID=

################################################################################
# Image Service
################################################################################
Expand Down
5 changes: 5 additions & 0 deletions config/env.production
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,11 @@ JWT_AUDIENCE=https://api.telescope.cdot.systems
# How long should a JWT work before it expires
JWT_EXPIRES_IN=1h

# Slack Bolt config
SLACK_BOT_TOKEN=
SLACK_BOT_SIGNING_SECRET=
SLACK_BOT_CHANNEL_ID=


################################################################################
# Image Service
Expand Down
4 changes: 4 additions & 0 deletions config/env.staging
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ JWT_AUDIENCE=https://dev.api.telescope.cdot.systems
# How long should a JWT work before it expires
JWT_EXPIRES_IN=1h

# Slack Bolt config
SLACK_BOT_TOKEN=
SLACK_BOT_SIGNING_SECRET=
SLACK_BOT_CHANNEL_ID=

################################################################################
# Image Service
Expand Down
4 changes: 4 additions & 0 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,10 @@ services:
- JWT_ISSUER
- JWT_AUDIENCE
- JWT_SECRET
# Slack Bolt config
- SLACK_BOT_TOKEN
- SLACK_BOT_SIGNING_SECRET
- SLACK_BOT_CHANNEL_ID
depends_on:
- traefik
labels:
Expand Down
Loading