Skip to content

Commit 1570def

Browse files
committed
docs: fix remaining manage-devstack references
Complete the rename from manage-devstack to devstack by fixing 75 remaining references across documentation and wiki files: - 26 occurrences in docs/ - 49 occurrences in wiki/ These were missed in the initial batch replacement.
1 parent 901d23a commit 1570def

33 files changed

Lines changed: 80 additions & 80 deletions

docs/ARCHITECTURE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1009,7 +1009,7 @@ sequenceDiagram
10091009
- **Runtime:** Docker
10101010
- **Networking:** Bridged (VZ framework)
10111011

1012-
**Customizable via manage-devstack.sh:**
1012+
**Customizable via devstack.sh:**
10131013
```bash
10141014
COLIMA_CPU=8 COLIMA_MEMORY=16 COLIMA_DISK=100 ./devstack.sh start
10151015
```

docs/FAQ.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ A: Only for standard and full profiles:
4141
Minimal profile uses single Redis instance (no initialization needed).
4242

4343
**Q: Can I use the bash script with profiles?**
44-
A: The bash script (`manage-devstack.sh`) starts all services (no profile support). Use the Python script for profile control:
44+
A: The bash script (`devstack.sh`) starts all services (no profile support). Use the Python script for profile control:
4545
```bash
4646
./devstack.py start --profile standard # Profile-aware
4747
./devstack.sh start # All services
@@ -81,8 +81,8 @@ A: Profile environment overrides are in `configs/profiles/`:
8181

8282
**Q: What's the difference between Python and Bash management scripts?**
8383
A:
84-
- **Python script** (`manage-devstack.py`): Profile-aware, colored output, better UX, 850 lines
85-
- **Bash script** (`manage-devstack.sh`): Traditional, no profiles, starts everything, 1,622 lines
84+
- **Python script** (`devstack.py`): Profile-aware, colored output, better UX, 850 lines
85+
- **Bash script** (`devstack.sh`): Traditional, no profiles, starts everything, 1,622 lines
8686

8787
Both are maintained. Use Python for profiles, Bash for backwards compatibility.
8888

@@ -117,7 +117,7 @@ psql -h $COLIMA_IP -p 5432 -U $POSTGRES_USER
117117
```
118118

119119
**Q: Can I use Docker Desktop instead of Colima?**
120-
A: Yes, but remove `colima` commands from `manage-devstack.sh`. Just use `docker compose up -d`.
120+
A: Yes, but remove `colima` commands from `devstack.sh`. Just use `docker compose up -d`.
121121

122122
**Q: How do I update service versions?**
123123
A: Edit `docker-compose.yml`:

docs/INSTALLATION.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ ls -la
237237
# Expected output: You should see files like:
238238
# .env.example
239239
# docker-compose.yml
240-
# manage-devstack
240+
# devstack
241241
# README.md
242242
# configs/
243243
# scripts/
@@ -270,13 +270,13 @@ ls -la .env
270270

271271
```bash
272272
# Add execute permissions
273-
chmod +x manage-devstack
273+
chmod +x devstack
274274

275275
# Verify permissions
276-
ls -l manage-devstack
276+
ls -l devstack
277277

278278
# Expected output (note the 'x'):
279-
# -rwxr-xr-x 1 yourusername staff xxxxx Nov 23 10:00 manage-devstack
279+
# -rwxr-xr-x 1 yourusername staff xxxxx Nov 23 10:00 devstack
280280
```
281281

282282
**4.3 Review Configuration (Optional but Recommended):**
@@ -344,13 +344,13 @@ uv pip install -r scripts/requirements.txt
344344

345345
```bash
346346
# Add execute permissions
347-
chmod +x manage-devstack
347+
chmod +x devstack
348348

349349
# Verify permissions
350-
ls -l manage-devstack
350+
ls -l devstack
351351

352352
# Expected output (note the 'x'):
353-
# -rwxr-xr-x 1 yourusername staff xxxxx Nov 23 10:00 manage-devstack
353+
# -rwxr-xr-x 1 yourusername staff xxxxx Nov 23 10:00 devstack
354354
```
355355

356356
**Skip This Section If:** You want to use the traditional bash script and start all services. Continue to Step 5.
@@ -1397,7 +1397,7 @@ nano .env # or vim, code, etc.
13971397

13981398
**4. Make Management Script Executable**
13991399
```bash
1400-
chmod +x manage-devstack
1400+
chmod +x devstack
14011401
```
14021402

14031403
### Configuration

docs/MANAGEMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ uv venv
3939
uv pip install -r scripts/requirements.txt
4040

4141
# The wrapper script automatically uses the venv
42-
chmod +x manage-devstack
42+
chmod +x devstack
4343

4444
# Verify
4545
./devstack --version

docs/PYTHON_CLI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,7 @@ pip3 install --user click rich PyYAML python-dotenv
10631063

10641064
**Solution:**
10651065
```bash
1066-
chmod +x manage-devstack
1066+
chmod +x devstack
10671067
```
10681068

10691069
---

docs/QUICK_REFERENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ amqps://admin:PASSWORD@localhost:5671/dev_vhost
345345

346346
```
347347
~/devstack-core/
348-
├── manage-devstack # Python CLI wrapper
348+
├── devstack # Python CLI wrapper
349349
├── manage_devstack.py # Python CLI implementation
350350
├── docker-compose.yml # Service definitions
351351
├── .env # Environment configuration

docs/SERVICE_PROFILES.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ docker compose --profile standard --profile reference up -d
146146

147147
```
148148
devstack-core/
149-
├── manage-devstack.py # New Python management script
149+
├── devstack.py # New Python management script
150150
├── profiles.yaml # Profile definitions
151151
├── docker-compose.yml # Updated with profile labels
152152
└── configs/
@@ -301,7 +301,7 @@ custom_profiles:
301301
ram_estimate: "1GB"
302302
```
303303
304-
### Step 3: Python Management Script (manage-devstack.py)
304+
### Step 3: Python Management Script (devstack.py)
305305
306306
```python
307307
#!/usr/bin/env python3
@@ -488,7 +488,7 @@ if __name__ == '__main__':
488488
- Forgejo initialization
489489
490490
3. **Parallel operation**
491-
- Keep manage-devstack.sh working
491+
- Keep devstack.sh working
492492
- Users can choose which to use
493493
- Eventually deprecate bash version
494494

docs/TROUBLESHOOTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -219,10 +219,10 @@ $ ./devstack --help
219219
**Solution:**
220220
```bash
221221
# Make script executable
222-
chmod +x manage-devstack
222+
chmod +x devstack
223223

224224
# Check she bang line
225-
head -1 manage-devstack
225+
head -1 devstack
226226
# Should be: #!/usr/bin/env python3
227227

228228
# Install dependencies
@@ -416,7 +416,7 @@ docker ps --format "table {{.Names}}\t{{.Status}}"
416416
All services should show `Up` and `healthy` within 60 seconds.
417417

418418
**Prevention:**
419-
Add automatic bootstrap check to `manage-devstack start` (see [Future Enhancements](#future-enhancements)).
419+
Add automatic bootstrap check to `devstack start` (see [Future Enhancements](#future-enhancements)).
420420

421421
---
422422

@@ -1827,7 +1827,7 @@ docker exec dev-postgres-1 psql -U dev_admin -d dev_database -c \
18271827
**Planned improvements to reduce troubleshooting:**
18281828
18291829
1. **Automatic Vault Bootstrap Detection**
1830-
- Add check to `manage-devstack start`
1830+
- Add check to `devstack start`
18311831
- Auto-run bootstrap if credentials missing
18321832
- Make startup truly "one command"
18331833

docs/UPGRADE_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Complete guide for upgrading DevStack Core versions, service versions, and migra
2626

2727
**Major Changes:**
2828
- Introduction of service profiles (minimal, standard, full, reference)
29-
- Python management CLI (manage-devstack.py)
29+
- Python management CLI (devstack.py)
3030
- Enhanced TLS certificate management
3131
- 4-tier network segmentation
3232
- AppRole authentication for all services

docs/USAGE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1082,7 +1082,7 @@ jobs:
10821082

10831083
```
10841084
~/devstack-core/
1085-
├── manage-devstack # Main management script
1085+
├── devstack # Main management script
10861086
├── docker-compose.yml # Service definitions
10871087
├── .env # Configuration
10881088
├── tests/run-all-tests.sh # Master test runner

0 commit comments

Comments
 (0)