Skip to content

Commit f51933b

Browse files
committed
refactor: Rename dev scripts to manage for clarity
- Rename dev.bat -> manage.bat - Rename dev.sh -> manage.sh - Update script headers to clarify purpose - Update PORTS.md reference The 'manage' scripts are for managing running services (logs, restart, test, etc.) The 'start-dev' scripts are for initial setup and starting the development environment
1 parent 9ddad2e commit f51933b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

PORTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Windows Host Machine
4848
docker-compose up -d
4949

5050
# Or use convenience script
51-
./dev.bat start
51+
./manage.bat start
5252
```
5353

5454
### 2. GPU Services on Windows Host

dev.bat renamed to manage.bat

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@echo off
2-
REM Docker-only development script for Windows
2+
REM Docker management script for Windows
3+
REM Use start-dev.bat for initial setup and startup
34

45
if "%1"=="start" (
56
echo Starting Second Brain services...

dev.sh renamed to manage.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
2-
# Docker-only development script
2+
# Docker management script for Mac/Linux
3+
# Use start-dev.sh for initial setup and startup
34

45
case "$1" in
56
start)

0 commit comments

Comments
 (0)