ci: explicitly load .env.test during test deployment #125
No reviewers
Labels
No labels
architecture
backend
bug
ci
config
database
docker
documentation
duplicate
enhancement
frontend
help wanted
invalid
issue-25
issue-26
issue-42
issue-65
issue-67
issue-82
migrations
p0-critical
p1-high
p2-medium
p3-low
performance
quality
question
security
state-management
testing
timezone
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
fastie81/honbu-manager!125
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/deploy-deterministic"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fixes the final configuration issue in the direct test deployment.
The runner correctly rendered
GOOGLE_CLIENT_IDandGOOGLE_CLIENT_SECRETinto/opt/honbu-manager-test/.env.test, but Docker Compose only auto-loads.env. As a result,docker compose configshowed both container variables as empty.This explicitly adds
--env-file .env.testto bothdocker compose pullanddocker compose up -d.