Skip to content

Commit fee35df

Browse files
baijumclaude
andcommitted
docs: fix outdated status, paths, and repo listings
- Update project status from "Early development" to phases 1-6 complete - Fix /data directory tree to match actual server layout - Replace non-existent music app repos with real repos (todo-app, hello-world, starter-app) - Add version caveat to self-hosted runner download command Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 412ee15 commit fee35df

4 files changed

Lines changed: 18 additions & 13 deletions

File tree

docs/architecture.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -150,12 +150,15 @@ All persistent data is stored under `/data` on the host, ensuring data survives
150150

151151
```
152152
/data
153-
├── database # PostgreSQL data
154-
├── minio # Object storage
155-
├── uploads # File uploads
156-
├── logs # Application logs
157-
├── backups # Database backups
158-
└── secrets # Runtime secrets
153+
├── postgres # PostgreSQL data
154+
├── redis # Redis data
155+
├── minio # Object storage
156+
├── caddy/ # Caddy TLS certs and config
157+
│ ├── data
158+
│ └── config
159+
├── loki # Log aggregation data
160+
├── grafana # Dashboard data
161+
└── backups/postgres # Database backups
159162
```
160163

161164
Docker containers mount these directories as volumes.

docs/ecosystem.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ The Towlion GitHub organization serves as a catalog of deployable applications.
77
```
88
towlion/
99
.github # Organization profile and community health files
10-
platform # Architecture docs and platform tools (github.com/towlion/platform)
11-
app-template # Template for bootstrapping new apps (github.com/towlion/app-template)
12-
uku-companion # Music practice companion
13-
fretboard-trainer # Guitar fretboard learning tool
14-
chord-transposer # Chord transposition utility
15-
practice-timer # Practice session timer
10+
platform # Architecture docs and platform tools
11+
app-template # Template for bootstrapping new apps
12+
todo-app # Todo CRUD application
13+
hello-world # Multi-app deployment test
14+
starter-app # Created from app-template
1615
```
1716

17+
Planned application repos (e.g., `uku-companion`, `fretboard-trainer`, `chord-transposer`, `practice-timer`) are tracked in the [roadmap](ROADMAP.md) under Phase 7.
18+
1819
## Repository Types
1920

2021
### Organization Profile ([`towlion/.github`](https://github.com/towlion/.github))

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The goal is to make it easy to:
6161

6262
## Project Status
6363

64-
Early development. The platform is evolving toward a fully automated GitHub-driven deployment ecosystem.
64+
Phases 1–6 complete. The platform provides a fully automated GitHub-driven deployment ecosystem with infrastructure bootstrap, multi-app hosting, observability, and self-hosting support.
6565

6666
## License
6767

docs/self-hosted-runners.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ On your server, as the `deploy` user:
4141
mkdir -p ~/actions-runner && cd ~/actions-runner
4242

4343
# Download the latest runner (check https://github.com/actions/runner/releases for current version)
44+
# NOTE: The version below (v2.321.0) is an example — replace with the current release from the link above.
4445
curl -o actions-runner-linux-x64.tar.gz -L \
4546
https://github.com/actions/runner/releases/download/v2.321.0/actions-runner-linux-x64-2.321.0.tar.gz
4647

0 commit comments

Comments
 (0)