feat: update website-creator to static mode with ConsentOS + tracking scripts

- Remove Astro DB (no longer needed for consent logging)
- Change from SSR to static output mode
- Add TrackingScripts.astro with GA4, GTM, Umami, Clarity, FB Pixel, Google Ads, TikTok, LINE
- Use ConsentOS consent-loader.js for auto-blocking tracking scripts
- Update Dockerfile to nginx static hosting
- Remove old consent template (custom consent no longer needed)
- Update SKILL.md, AGENTS.md, README.md documentation
- Add nginx.conf for static hosting
This commit is contained in:
2026-04-21 21:19:32 +07:00
parent d1edc9cd6c
commit c38cc4ae26
19 changed files with 378 additions and 1099 deletions

View File

@@ -1,3 +1,4 @@
# Build stage
FROM node:20-alpine AS builder
WORKDIR /app
@@ -7,19 +8,17 @@ RUN npm install
COPY . .
RUN npm run build
FROM node:20-alpine AS runner
# Static files stage
FROM nginx:alpine AS runner
WORKDIR /app
RUN mkdir -p /data
# Copy static files from builder
COPY --from=builder /app/dist ./dist
COPY --from=builder /app/package.json ./
RUN npm install --omit=dev
ENV HOST=0.0.0.0
ENV PORT=4321
ENV NODE_ENV=production
# Copy nginx config
COPY nginx.conf /etc/nginx/http.d/default.conf
EXPOSE 4321
EXPOSE 80
CMD ["node", "dist/server/entry.mjs"]
CMD ["nginx", "-g", "daemon off;"]