mirror of
https://github.com/trycua/computer.git
synced 2026-01-03 03:49:58 -06:00
29 lines
500 B
Bash
Executable File
29 lines
500 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
WORKSPACE="/workspaces/cua"
|
|
|
|
# Setup .env.local
|
|
echo "PYTHON_BIN=python" > /workspaces/cua/.env.local
|
|
|
|
# Run /scripts/build.sh
|
|
./scripts/build.sh
|
|
|
|
# ---
|
|
# Build is complete. Show user a clear message to open the workspace manually.
|
|
# ---
|
|
|
|
cat << 'EOM'
|
|
|
|
============================================
|
|
🚀 Build complete!
|
|
|
|
👉 Next steps:
|
|
|
|
1. Open '.vscode/py.code-workspace'
|
|
2. Press 'Open Workspace'
|
|
|
|
Happy coding!
|
|
============================================
|
|
|
|
EOM
|