- Changed database path to ./storage/data.db - Changed uploads path to ./storage/uploads - Updated Dockerfile to create storage/uploads dir (not uploads) - Updated entrypoint.sh to check /app/storage/data.db - Removed COPY of uploads from builder to runner Now all persistent data is in /app/storage/: - /app/storage/data.db (SQLite database) - /app/storage/uploads/ (uploaded media) Easypanel mount: emdash-storage → /app/storage To update EmDash: change version in package.json → push → redeploy Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
46 lines
1.0 KiB
JavaScript
46 lines
1.0 KiB
JavaScript
import node from "@astrojs/node";
|
|
import react from "@astrojs/react";
|
|
import { auditLogPlugin } from "@emdash-cms/plugin-audit-log";
|
|
import { defineConfig, fontProviders } from "astro/config";
|
|
import emdash, { local } from "emdash/astro";
|
|
import { sqlite } from "emdash/db";
|
|
|
|
export default defineConfig({
|
|
output: "server",
|
|
adapter: node({
|
|
mode: "standalone",
|
|
}),
|
|
image: {
|
|
layout: "constrained",
|
|
responsiveStyles: true,
|
|
},
|
|
integrations: [
|
|
react(),
|
|
emdash({
|
|
database: sqlite({ url: "file:./storage/data.db" }),
|
|
storage: local({
|
|
directory: "./storage/uploads",
|
|
baseUrl: "/_emdash/api/media/file",
|
|
}),
|
|
plugins: [auditLogPlugin()],
|
|
}),
|
|
],
|
|
fonts: [
|
|
{
|
|
provider: fontProviders.google(),
|
|
name: "Inter",
|
|
cssVariable: "--font-sans",
|
|
weights: [400, 500, 600, 700],
|
|
fallbacks: ["sans-serif"],
|
|
},
|
|
{
|
|
provider: fontProviders.google(),
|
|
name: "JetBrains Mono",
|
|
cssVariable: "--font-mono",
|
|
weights: [400, 500],
|
|
fallbacks: ["monospace"],
|
|
},
|
|
],
|
|
devToolbar: { enabled: false },
|
|
});
|