fix
All checks were successful
build / build (push) Successful in 57s

This commit is contained in:
James Greenwood 2025-11-17 09:12:35 +00:00
parent 69d38f02a5
commit 99ed57d43b
2 changed files with 10 additions and 1 deletions

View File

@ -18,4 +18,6 @@ jobs:
with:
context: .
push: true
tags: code.jamey.stream/jamey/action-requests-demo.jamey.stream:${{ gitea.sha }}
tags: |
code.jamey.stream/jamey/action-requests-demo.jamey.stream:${{ gitea.sha }}
code.jamey.stream/jamey/action-requests-demo.jamey.stream:latest

View File

@ -8,6 +8,13 @@ import Config
config :action_requests_demo, ActionRequestsDemoWeb.Endpoint,
cache_static_manifest: "priv/static/cache_manifest.json"
# Allow LiveView/WebSocket connections from the deployed host
config :action_requests_demo, ActionRequestsDemoWeb.Endpoint,
check_origin: [
"https://action-requests-demo.jamey.stream",
"//action-requests-demo.jamey.stream"
]
# Do not print debug messages in production
config :logger, level: :info