mirror of https://github.com/langgenius/dify.git
feat: add start-web script to automate web project setup and execution
This commit is contained in:
parent
052127c473
commit
7de533a643
|
|
@ -0,0 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -x
|
||||
|
||||
SCRIPT_DIR="$(dirname "$(realpath "$0")")"
|
||||
cd "$SCRIPT_DIR/../web"
|
||||
|
||||
pnpm install && pnpm build && pnpm start
|
||||
Loading…
Reference in New Issue