Add backend/frontend scaffolding with Oracle ADB wallet config

- Backend: Spring Boot 3 + WebFlux, JWT auth, Oracle ADB wallet,
  8 controllers/services/repositories (Auth~Tag), DTOs, exception handling
- Frontend: Next.js 15, TypeScript, Tailwind CSS, AuthContext,
  7 pages (dashboard, knowledge, chat, study, todos, habits, login)
- DB: V1 migration with 12 tables including VECTOR(1024) + HNSW index
- Ops: PM2 ecosystem config, deploy.sh, start-backend.sh
- CLAUDE.md: DB credentials replaced with env var references

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-30 06:56:26 +00:00
parent 5d8b0fcdb8
commit 3d2aa6cf46
68 changed files with 2235 additions and 17 deletions

23
ecosystem.config.cjs Normal file
View File

@@ -0,0 +1,23 @@
module.exports = {
apps: [
{
name: "sundol-backend",
script: "./start-backend.sh",
interpreter: "/bin/bash",
cwd: "/home/opc/sundol",
env: {
JAVA_HOME: "/usr/lib/jvm/java-21",
},
},
{
name: "sundol-frontend",
script: "node",
args: "sundol-frontend/.next/standalone/server.js",
cwd: "/home/opc/sundol",
env: {
PORT: 3000,
HOSTNAME: "0.0.0.0",
},
},
],
};