6 lines
124 B
Bash
6 lines
124 B
Bash
#!/bin/bash
|
|
DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
cd "$DIR"
|
|
cp .env.production .env.local 2>/dev/null
|
|
npx next start -p 3000
|