Skip to content

Commit f6caa1b

Browse files
authored
Remove example sections from README
1 parent 2c77f2f commit f6caa1b

File tree

1 file changed

+0
-44
lines changed

1 file changed

+0
-44
lines changed

README.md

Lines changed: 0 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -397,48 +397,4 @@ seed: ## Example seed execution
397397

398398
---
399399

400-
### Appendix A — Example JSON‑LD (ActivityStreams Note)
401-
402-
```json
403-
{
404-
"@context": "https://www.w3.org/ns/activitystreams",
405-
"type": "Create",
406-
"actor": {
407-
"type": "Person",
408-
"name": "HeatH User"
409-
},
410-
"object": {
411-
"type": "Note",
412-
"content": "Hello from HeatH!"
413-
}
414-
}
415-
```
416-
417-
### Appendix B — Sample NGINX for Web (Prod)
418-
419-
```nginx
420-
server {
421-
listen 80;
422-
server_name _;
423-
root /usr/share/nginx/html;
424-
index index.html;
425-
426-
location /api/ {
427-
proxy_pass http://backend:8080/api/;
428-
proxy_set_header Host $host;
429-
proxy_set_header X-Real-IP $remote_addr;
430-
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
431-
proxy_set_header X-Forwarded-Proto $scheme;
432-
}
433-
}
434-
```
435-
436-
---
437-
438-
**Conventions**
439-
440-
* Branching model: `main` (stable), `develop`, feature branches `feature/*`.
441-
* PRs require reviews & passing checks.
442-
* Issues labeled with `area/backend`, `area/web`, `area/mobile`, `good-first-issue`.
443400

444-
> If you change folder names or ports, reflect them in `docker-compose.yml` and `.env*` files. This README targets a **fresh programmer** who knows general tools but not your project or Docker; it is safe to follow step‑by‑step.

0 commit comments

Comments
 (0)