We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 989f28e commit ac763ecCopy full SHA for ac763ec
bin/dev
@@ -1,11 +1,8 @@
1
#!/usr/bin/env sh
2
3
-if gem list --no-installed --exact --silent foreman; then
+if ! gem list foreman -i --silent; then
4
echo "Installing foreman..."
5
gem install foreman
6
fi
7
8
-# Default to port 3000 if not specified
9
-export PORT="${PORT:-3000}"
10
-
11
-exec foreman start -f Procfile.dev --env /dev/null "$@"
+exec foreman start -f Procfile.dev "$@"
0 commit comments