initialize project with basic structure and dependencies

This commit is contained in:
ImBenji 2026-04-27 21:30:38 +01:00
parent c4913a028f
commit a3b3bd6b04
2 changed files with 1 additions and 4 deletions

View file

@ -17,7 +17,7 @@ COPY --from=builder /app/.output /app/.output
COPY --from=builder /app/drizzle /app/drizzle
COPY --from=builder /app/package*.json ./
RUN mkdir -p /app/uploads /app/data
RUN npm ci --omit=dev && mkdir -p /app/uploads /app/data
ENV NODE_ENV=production
ENV NITRO_PORT=3000

View file

@ -33,8 +33,5 @@ export default defineNuxtConfig({
experimental: {
asyncContext: true,
},
externals: {
external: ["better-sqlite3", "pdf-parse", "multer"],
},
},
});