Add logo and rename

This commit is contained in:
2025-11-12 17:16:13 +01:00
parent 584a4a0acd
commit f903e28728
49 changed files with 628 additions and 192 deletions

View File

@ -2,7 +2,7 @@
## Hybrid Architecture
Project Notes uses a **hybrid architecture** that combines the best of multiple paradigms:
PersoNotes uses a **hybrid architecture** that combines the best of multiple paradigms:
### Core Components
@ -240,7 +240,7 @@ Internet → Reverse Proxy (nginx/Caddy)
Basic Auth / OAuth
Project Notes (Go)
PersoNotes (Go)
Filesystem (notes/)
```
@ -248,7 +248,7 @@ Internet → Reverse Proxy (nginx/Caddy)
Example nginx config:
```nginx
location / {
auth_basic "Project Notes";
auth_basic "PersoNotes";
auth_basic_user_file /etc/nginx/.htpasswd;
proxy_pass http://localhost:8080;
}