16 lines
396 B
Bash
16 lines
396 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -Eeuo pipefail
|
||
|
|
|
||
|
|
COZE_WORKSPACE_PATH="${COZE_WORKSPACE_PATH:-$(pwd)}"
|
||
|
|
PORT=5000
|
||
|
|
DEPLOY_RUN_PORT="${DEPLOY_RUN_PORT:-$PORT}"
|
||
|
|
|
||
|
|
start_service() {
|
||
|
|
cd "${COZE_WORKSPACE_PATH}"
|
||
|
|
echo "Starting HTTP service on port ${DEPLOY_RUN_PORT} for deploy..."
|
||
|
|
npx next start --port ${DEPLOY_RUN_PORT}
|
||
|
|
}
|
||
|
|
|
||
|
|
echo "Starting HTTP service on port ${DEPLOY_RUN_PORT} for deploy..."
|
||
|
|
start_service
|