Skip to content

Commit

Permalink
feat(deploy): test deployment to kubernetes azure
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-chervet committed Oct 30, 2024
1 parent 2decf6b commit 389cb0f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion production/api/app/settings.development.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"redis_host": "localhost",
"redis_port": 6379,
"url_slimfaas": "http://slimfaas:5000",
"server_host": "0.0.0.0",
"server_host": "localhost",
"server_port": 8000
}
2 changes: 1 addition & 1 deletion production/api/app/settings.production.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"redis_host": "redis",
"redis_port": 6379,
"url_slimfaas": "http://slimfaas.transcriptor.svc.cluster.local",
"server_host": "localhost",
"server_host": "0.0.0.0",
"server_port": 8000
}
6 changes: 5 additions & 1 deletion production/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ services:
image: local.io/api-transcriptor:local
restart: "no"
ports:
- "8000:8000"
- "8000:8000
environment:
- PYTHON_ENVIRONMENT=production
#ia-worker:
# build:
# context: ./ia-worker
Expand All @@ -21,6 +23,8 @@ services:
# restart: "no"
# ports:
# - "8001:8000"
#environment:
# - PYTHON_ENVIRONMENT=production
webapp:
build:
context: ./webapp
Expand Down

0 comments on commit 389cb0f

Please sign in to comment.