mirror of
https://github.com/tradecatlabs/vibe-coding-cn.git
synced 2026-07-28 03:07:56 +00:00
8 lines
91 B
Bash
Executable File
8 lines
91 B
Bash
Executable File
#!/bin/bash
|
|
# 部署脚本
|
|
set -e
|
|
|
|
echo "Deploying..."
|
|
# docker-compose up -d
|
|
echo "Done!"
|