mirror of
https://github.com/tiennm99/ccs.git
synced 2026-07-15 18:21:09 +00:00
- add ccs docker subcommands for up, down, status, update, logs, and config - bundle integrated docker assets and remote ssh deployment support - add executor regression tests and root help/router coverage Refs #812
10 lines
205 B
Bash
10 lines
205 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
LOG_DIR="/var/log/ccs"
|
|
|
|
mkdir -p /root/.ccs /root/.ccs/cliproxy "$LOG_DIR"
|
|
touch "$LOG_DIR/ccs-dashboard.log" "$LOG_DIR/cliproxy.log"
|
|
|
|
exec /usr/bin/supervisord -c /etc/supervisord.conf
|