Skip to content

Commit 80738f4

Browse files
committed
chore: trigger redeployment to fix INTERNAL_SERVICE_TOKEN issue
1 parent 55541dc commit 80738f4

30 files changed

Lines changed: 231 additions & 0 deletions

File tree

.github/workflows/deploy-voice-agent.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,7 @@ jobs:
5757
5858
5959
60+
61+
62+
63+

database/supabase/migrations/010_workflows.sql

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,3 +123,7 @@ CREATE POLICY "System can insert workflow executions"
123123

124124

125125

126+
127+
128+
129+

database/supabase/migrations/011_notifications.sql

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,7 @@ $$ LANGUAGE plpgsql SECURITY DEFINER;
7575

7676

7777

78+
79+
80+
81+

database/supabase/migrations/012_add_agent_avatar_url.sql

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,7 @@ COMMENT ON COLUMN public.agent_configs.avatar_url IS 'URL to the agent profile p
1515

1616

1717

18+
19+
20+
21+

docker-compose.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,52 @@ services:
3434
- rabbitmq-data:/var/lib/rabbitmq
3535
restart: unless-stopped
3636

37+
# PostgreSQL for SonarQube
38+
sonarqube-db:
39+
image: postgres:15-alpine
40+
environment:
41+
- POSTGRES_USER=sonar
42+
- POSTGRES_PASSWORD=sonar
43+
- POSTGRES_DB=sonar
44+
volumes:
45+
- sonarqube-db-data:/var/lib/postgresql/data
46+
restart: unless-stopped
47+
healthcheck:
48+
test: ["CMD-SHELL", "pg_isready -U sonar"]
49+
interval: 10s
50+
timeout: 5s
51+
retries: 5
52+
53+
# SonarQube Server
54+
sonarqube:
55+
image: sonarqube:community
56+
depends_on:
57+
sonarqube-db:
58+
condition: service_healthy
59+
ports:
60+
- "9000:9000"
61+
environment:
62+
- SONAR_JDBC_URL=jdbc:postgresql://sonarqube-db:5432/sonar
63+
- SONAR_JDBC_USERNAME=sonar
64+
- SONAR_JDBC_PASSWORD=sonar
65+
- SONAR_ES_BOOTSTRAP_CHECKS_DISABLE=true
66+
volumes:
67+
- sonarqube-data:/opt/sonarqube/data
68+
- sonarqube-extensions:/opt/sonarqube/extensions
69+
- sonarqube-logs:/opt/sonarqube/logs
70+
ulimits:
71+
nproc: 4096
72+
nofile:
73+
soft: 65536
74+
hard: 65536
75+
restart: unless-stopped
76+
3777
volumes:
3878
mongodb-data:
3979
redis-data:
4080
rabbitmq-data:
81+
sonarqube-db-data:
82+
sonarqube-data:
83+
sonarqube-extensions:
84+
sonarqube-logs:
4185

frontend/app/api/notifications/route.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,3 +112,7 @@ export async function POST(request: NextRequest) {
112112

113113

114114

115+
116+
117+
118+

frontend/app/api/workflows/[id]/disable/route.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,7 @@ async function getAuthToken(supabase: any): Promise<string> {
6565

6666

6767

68+
69+
70+
71+

frontend/app/api/workflows/[id]/enable/route.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,7 @@ async function getAuthToken(supabase: any): Promise<string> {
6565

6666

6767

68+
69+
70+
71+

frontend/app/api/workflows/[id]/executions/route.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,7 @@ async function getAuthToken(supabase: any): Promise<string> {
7272

7373

7474

75+
76+
77+
78+

frontend/app/api/workflows/[id]/test/route.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,7 @@ async function getAuthToken(supabase: any): Promise<string> {
6868

6969

7070

71+
72+
73+
74+

0 commit comments

Comments
 (0)