Add logo and rename
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
# Architecture Overview
|
||||
|
||||
Project Notes is a web-based Markdown note-taking application built with a hybrid architecture combining Go backend, HTMX for interactions, and modern JavaScript for UI enhancements.
|
||||
PersoNotes is a web-based Markdown note-taking application built with a hybrid architecture combining Go backend, HTMX for interactions, and modern JavaScript for UI enhancements.
|
||||
|
||||
## Design Philosophy
|
||||
|
||||
@ -68,7 +68,7 @@ User → Browser
|
||||
│ ├─ Inject file tree
|
||||
│ └─ Return HTML
|
||||
│
|
||||
├─ Load static/dist/project-notes-frontend.es.js (Vite bundle)
|
||||
├─ Load static/dist/personotes-frontend.es.js (Vite bundle)
|
||||
│ │
|
||||
│ ├─ Initialize FileTree (file-tree.js)
|
||||
│ ├─ Initialize Search (search.js)
|
||||
@ -237,8 +237,8 @@ frontend/src/
|
||||
↓ (Vite build)
|
||||
|
||||
static/dist/
|
||||
├── project-notes-frontend.es.js (1.0 MB - ES modules)
|
||||
└── project-notes-frontend.umd.js (679 KB - UMD)
|
||||
├── personotes-frontend.es.js (1.0 MB - ES modules)
|
||||
└── personotes-frontend.umd.js (679 KB - UMD)
|
||||
|
||||
↓ (Loaded by browser)
|
||||
|
||||
@ -472,7 +472,7 @@ HTTP Request
|
||||
|
||||
```nginx
|
||||
location / {
|
||||
auth_basic "Project Notes";
|
||||
auth_basic "PersoNotes";
|
||||
auth_basic_user_file /etc/nginx/.htpasswd;
|
||||
proxy_pass http://localhost:8080;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user