be4d43105e
Node.js/Express backend + vanilla JS frontend. Features: real-time collaborative whiteboard (SSE), multi-page support, LaTeX formulas, shapes/connectors, coordinate systems, number lines, compass, zoom/pan, Catmull-Rom pencil smoothing, ruler/protractor with rotation & resize controls, minimap navigation overlay, auto-measurements, multi-page thumbnails sidebar, PNG export, page templates. Student/teacher workflows: classes, assignments, library, dashboard. Mobile responsive. SQLite (better-sqlite3). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9 lines
160 B
Bash
9 lines
160 B
Bash
PORT=3000
|
|
|
|
# JWT
|
|
JWT_SECRET=change_this_to_a_long_random_string
|
|
JWT_EXPIRES_IN=7d
|
|
|
|
# CORS — адрес фронтенда
|
|
CLIENT_ORIGIN=http://localhost:5500
|