- Remove explicit cookie configuration from release - Set RELEASE_DISTRIBUTION=none and RELEASE_NODE=nonode@nohost - Simplify Nix derivation by removing postInstall hooks - Single standalone daemon doesn't need Erlang node clustering Fixes persistent COOKIE file issues in Nix builds. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
6 lines
133 B
Elixir
6 lines
133 B
Elixir
#!/bin/sh
|
|
|
|
# Configure environment for release
|
|
export MIX_ENV=prod
|
|
export RELEASE_DISTRIBUTION=none
|
|
export RELEASE_NODE=nonode@nohost |