You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -117,21 +117,27 @@ loex config myapp db "docker-compose up -d"
117
117
loex start [project-name]
118
118
119
119
# Start specific service
120
-
loex start [project-name] --service frontend
120
+
loex start [project-name] [service-name]
121
+
122
+
# Examples:
123
+
loex start myapp # Start all services
124
+
loex start myapp frontend # Start only frontend
125
+
loex start myapp backend # Start only backend
126
+
loex start myapp db # Start only database
121
127
122
128
# Stop all services
123
129
loex stop [project-name]
124
130
125
131
# Stop specific service
126
-
loex stop [project-name] --service backend
132
+
loex stop [project-name] [service-name]
127
133
128
134
# Check service status
129
135
loex status [project-name]
130
136
```
131
137
132
138
## 🔍 Auto-Detection
133
139
134
-
Loex automatically detects common project types and suggests appropriate commands when using the `detect` or `wizard` commands.
140
+
Loex automatically detects common project types and suggests appropriate commands when using the `config detect` or `config wizard` commands.
135
141
136
142
**💡 Important**: Run the command from your project's root directory to enable auto-detection. Loex analyzes files in the current directory to suggest the best commands for each service type.
137
143
@@ -180,7 +186,7 @@ loex start webapp
180
186
```bash
181
187
# Use auto-detection (run from project root directory)
0 commit comments