mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 09:01:09 +02:00
File-mount fixes (Colima mounts single files as directories): - SearXNG: mount entire searxng/ dir instead of individual files - VictoriaMetrics: mount prometheus/ dir instead of individual yml files - Loki: mount loki/ dir instead of individual yaml file - vmalert: mount prometheus/ dir for alerts - Synapse: move config files to docker/matrix/config/ subdir - Landings (nginx): copy configs from mounted dir via entrypoint mana-llm port fix: - Service hardcodes port 3025 in Dockerfile, was configured as 3020 - Update compose to use 3025 internally, fix health check and references Web app Dockerfile fixes: - mana-web: add missing MIDDLEWARE_URL build arg - manadeck-web: add missing PUBLIC_API_URL build arg - playground: add missing PUBLIC_MANA_LLM_URL build arg, add @manacore/shared-auth-stores dependency - mukke-web: add missing svelte-i18n dependency Remaining build issues (not fixed, deeper code problems): - skilltree-web, inventar-web: Svelte 5 rune in shared package not compiled during Rollup build - mana-web: MIDDLEWARE_URL may need additional server-side config Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
34 lines
943 B
JSON
34 lines
943 B
JSON
{
|
|
"name": "@playground/web",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite dev --port 5190",
|
|
"dev:full": "vite dev --port 5190",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"type-check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/adapter-node": "^5.4.0",
|
|
"@sveltejs/kit": "^2.47.1",
|
|
"@sveltejs/vite-plugin-svelte": "^6.2.0",
|
|
"@tailwindcss/vite": "^4.1.7",
|
|
"svelte": "^5.41.0",
|
|
"svelte-check": "^4.3.3",
|
|
"tailwindcss": "^4.1.17",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^7.1.7"
|
|
},
|
|
"dependencies": {
|
|
"@manacore/shared-auth": "workspace:*",
|
|
"@manacore/shared-auth-stores": "workspace:*",
|
|
"@manacore/shared-auth-ui": "workspace:*",
|
|
"@manacore/shared-branding": "workspace:*",
|
|
"@manacore/shared-i18n": "workspace:*",
|
|
"@manacore/shared-icons": "workspace:*",
|
|
"marked": "^17.0.0",
|
|
"svelte-i18n": "^4.0.1"
|
|
}
|
|
}
|