refactor: rename apps/ to clients/ + update architecture docs
Some checks failed
Some checks failed
Rename apps/ → clients/ for clarity: - app/ (singular) = Python backend (FastAPI, server-rendered web UI) - clients/ (plural) = standalone client applications (API consumers) The web storefront/store/admin stays in app/ because it's server- rendered Jinja2, not a standalone frontend. clients/ is for native apps that connect to the API externally. Updated: - docs/architecture/overview.md — added clients/ to project structure - clients/terminal-android/SETUP.md — updated path references Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -32,7 +32,7 @@ Android Studio bundles:
|
||||
|
||||
### 3. Open the project
|
||||
|
||||
1. `File → Open` → navigate to `apps/terminal-android/`
|
||||
1. `File → Open` → navigate to `clients/terminal-android/`
|
||||
2. Wait for Gradle sync (first time downloads ~500MB of dependencies)
|
||||
3. If prompted about Gradle JDK, select the bundled JDK 17
|
||||
|
||||
@@ -52,7 +52,7 @@ Android Studio bundles:
|
||||
## Project structure
|
||||
|
||||
```
|
||||
apps/terminal-android/
|
||||
clients/terminal-android/
|
||||
├── app/
|
||||
│ ├── build.gradle.kts # App dependencies (like requirements.txt)
|
||||
│ ├── src/main/
|
||||
@@ -322,6 +322,11 @@ project/
|
||||
│ ├── unit/
|
||||
│ └── integration/
|
||||
│
|
||||
├── clients/ # Standalone client applications (API consumers)
|
||||
│ └── terminal-android/ # Native Android POS terminal (Kotlin/Compose)
|
||||
│
|
||||
├── scripts/ # Seed scripts, deploy scripts
|
||||
│
|
||||
└── docs/ # Documentation
|
||||
├── architecture/ # System architecture
|
||||
├── frontend/ # Frontend guides
|
||||
|
||||
Reference in New Issue
Block a user