Sha256: 1718067582711fe63a19c642b4a5fccdc98d4cd498c4caca88331cc28b3649e3

Contents?: true

Size: 219 Bytes

Versions: 4

Compression:

Stored size: 219 Bytes

Contents

#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'

while getopts p: option
do
case "${option}"
in
p) PORT=${OPTARG};;
esac
done

echo "Starting <%= app_name %> application server..."
bundle exec rackup -p ${PORT:-9292}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
grapethor-0.2.3 lib/grapethor/templates/new/bin/server.tt
grapethor-0.2.2 lib/grapethor/templates/new/bin/server.tt
grapethor-0.2.1 lib/grapethor/templates/new/bin/server.tt
grapethor-0.2.0 lib/grapethor/templates/new/bin/server.tt