- Add Dockerfile for Phoenix release builds - Add .dockerignore to optimize build context - Add Forgejo workflow that runs tests then builds/pushes Docker image - Update test config to support DATABASE_URL for CI - Add release.ex and rel/ overlay scripts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
5 lines
88 B
Bash
5 lines
88 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
cd -P -- "$(dirname -- "$0")"
|
|
PHX_SERVER=true exec ./localspot start
|