Skip to content

Commit 0ebbe0c

Browse files
authored
Merge pull request #75 from toggle-corp/feat/toggle-django-helm
2 parents 14dfb01 + c41c0c9 commit 0ebbe0c

19 files changed

Lines changed: 993 additions & 1051 deletions

.flake8

Lines changed: 0 additions & 9 deletions
This file was deleted.

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
[submodule "fugit"]
33
path = fugit
44
url = git@github.com:toggle-corp/fugit.git
5-
branch = v0.1.4
5+
branch = v0.1.6

docs/slack_bot.md

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# Slack Bot
2+
3+
> [!IMPORTANT]
4+
> This is work in progress
5+
6+
## Setup
7+
8+
```json
9+
{
10+
"display_information": {
11+
"name": "Timur",
12+
"description": "Timur",
13+
"background_color": "#1c0d03"
14+
},
15+
"features": {
16+
"bot_user": {
17+
"display_name": "Timur",
18+
"always_online": false
19+
}
20+
},
21+
"oauth_config": {
22+
"scopes": {
23+
"bot": [
24+
"channels:history",
25+
"chat:write",
26+
"chat:write.customize",
27+
"groups:history",
28+
"im:history",
29+
"incoming-webhook",
30+
"mpim:history",
31+
"users:read",
32+
"users:read.email"
33+
]
34+
}
35+
},
36+
"settings": {
37+
"allowed_ip_address_ranges": [
38+
"110.34.1.108/32"
39+
],
40+
"event_subscriptions": {
41+
"bot_events": [
42+
"message.channels",
43+
"message.groups",
44+
"message.im",
45+
"message.mpim"
46+
]
47+
},
48+
"interactivity": {
49+
"is_enabled": true
50+
},
51+
"org_deploy_enabled": false,
52+
"socket_mode_enabled": true,
53+
"token_rotation_enabled": false
54+
}
55+
}
56+
```
57+
58+
## Events
59+
- https://api.slack.com/apis/events-api
60+
- https://api.slack.com/apis/socket-mode [Dev]
61+
- https://api.slack.com/apis/http [Prod]

helm/.helmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
.helm-charts/
2+
tests/
3+
snapshots/
4+
tests.yaml
25
values-local.yaml

helm/Chart.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies:
2-
- name: django-app
3-
repository: oci://ghcr.io/toggle-corp/charts
4-
version: 0.1.2
5-
digest: sha256:345fe5056e46773c9fd69766d0cbd1184c0892c9db196cacc6fab2ce2561b4c0
6-
generated: "2025-07-23T10:02:03.677212324Z"
2+
- name: banjo-helm
3+
repository: oci://ghcr.io/toggle-corp
4+
version: 0.2.8
5+
digest: sha256:13cb6f4e86ec08c4b4fded8bcc77289c68810608945f4d7c5bf94076f02688b4
6+
generated: "2026-04-10T17:16:56.741123011+05:45"

helm/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sources:
77
- https://github.com/toggle-corp/timur-backend
88

99
dependencies:
10-
- name: django-app
10+
- name: banjo-helm
1111
alias: app
12-
version: 0.1.2
13-
repository: oci://ghcr.io/toggle-corp/charts
12+
version: 0.2.8
13+
repository: oci://ghcr.io/toggle-corp

0 commit comments

Comments
 (0)