Skip to content

Commit

Permalink
Update app-engine.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
kjlippold authored Oct 10, 2024
1 parent 53d0dc4 commit 46e8a40
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions terraform/gcp/app-engine.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ resource "google_app_engine_standard_app_version" "hydroserver_django_service" {
service = "hydroserver-${var.instance}"
version_id = "v0"
runtime = "python311"

deployment {
zip {
source_url = ""
}
}

entrypoint {
shell = "gunicorn -b :$PORT hydroserver.wsgi"
}
Expand Down

0 comments on commit 46e8a40

Please sign in to comment.