Skip to content

Commit a181273

Browse files
committed
Add README
1 parent 9511b9a commit a181273

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

README.md

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# 🔧 GitStream Automation Demo
2+
3+
A full-stack demo app used to showcase `gitStream` automations like AI, `codeExperts`, contributor mapping, and PR workflows.
4+
5+
### 🗂️ Structure
6+
7+
- `frontend/` – HTML/JS UI and NodeJS proxy
8+
- `services/auth-python/` – Auth (FastAPI)
9+
- `services/billing-csharp/` – Billing (.NET Core)
10+
- `services/orders-java/` – Orders (Spring Boot)
11+
- `.cm/` – gitStream config
12+
- `docker-compose.yml` – Runs everything
13+
14+
## 🧭 Architecture
15+
16+
```mermaid
17+
18+
graph TD
19+
20+
subgraph "☁️ Public Services"
21+
P[🧭 Proxy<br/> NodeJS]
22+
end
23+
24+
subgraph "🧑‍💻 Client"
25+
A[🌐 Frontend <br/> HTML/JS]
26+
end
27+
28+
subgraph "🏢 Internal Services"
29+
B[🔐 Auth Service <br/> Python & FastAPI]
30+
D[📦 Orders Service <br/> Java & Spring Boot]
31+
C[💳 Billing Service <br/> CSharp & ASP.NET]
32+
end
33+
34+
A --> P
35+
P --> B
36+
P --> D
37+
D --> B
38+
D --> C
39+
```
40+
41+
### 🚀 Usage
42+
43+
```bash
44+
docker-compose up --build
45+
```
46+
Open a browser to http://localhost:3000/

0 commit comments

Comments
 (0)