9 lines
124 B
Bash
9 lines
124 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
export PORT="${PORT:-4003}"
|
|
export NODE_ENV=production
|
|
|
|
cd "$(dirname "$0")"
|
|
exec pnpm start
|