Do not generate $PORT variables for overmind processes in bin/dev

This commit is contained in:
Klaus Zanders
2026-06-12 11:42:21 +02:00
parent 107844028a
commit 9657ed6633
+3 -1
View File
@@ -1,7 +1,9 @@
#!/usr/bin/env bash
if command -v overmind &> /dev/null; then
overmind start -f Procfile.dev
# Start Procfile.dev and do not generate a $PORT env var, as this overrides our $FE_PORT, as the new version of
# `ng serve` seems to pick the $ENV var over the CLI arg, which causes the FE to fail to start on the expected port.
overmind start -f Procfile.dev -N
elif command -v foreman &> /dev/null; then
foreman start -f Procfile.dev
else