b1eb23926e
Summary of changes: - Consolidated Studio+CMS and Experience+LMS into unified services. - Moved core business logic (enrollment, grading, auth) to PostgreSQL functions. - Implemented advanced auditing via DB triggers and session context. - Added gamification (XP/Levels/Leaderboards) and logic encapsulation. - Updated installation/diagnostic scripts for the new architecture. - Created a comprehensive Visual Developer Manual in README.md with hardware scaling.
8 lines
113 B
Bash
8 lines
113 B
Bash
#!/bin/sh
|
|
|
|
# Start the CMS backend in the background
|
|
./cms-service &
|
|
|
|
# Start the Studio frontend
|
|
node server.js
|