Skip to content
Snippets Groups Projects
Select Git revision
  • 90082fc33c918c6b477b5a01d14d5b8a50315bb0
  • main default protected
  • fix-search
  • network-typo-shielded-remmediation
  • rework-photopolicy-social-media
  • pr-47
  • isdn
7 results

parcel.md

Blame
  • dev 379 B
    #!/usr/bin/env sh
    
    if ! gem list foreman -i --silent; then
      echo "Installing foreman..."
      gem install foreman
    fi
    
    # Default to port 3000 if not specified
    export PORT="${PORT:-3000}"
    
    # Let the debug gem allow remote connections,
    # but avoid loading until `debugger` is called
    export RUBY_DEBUG_OPEN="true"
    export RUBY_DEBUG_LAZY="true"
    
    exec foreman start -f Procfile.dev "$@"