Full-stack music production collaboration tool with: - SvelteKit frontend with Design System (CSS vars, 8 shared components) - Hono API with auth, projects, tracks, versions, comments - PostgreSQL + Drizzle ORM (8 tables, roles, permissions) - S3-compatible storage with presigned upload URLs - wavesurfer.js audio player with waveform visualization - A/B version comparison with synchronized playback - Timestamped comments with threading and resolve workflow - Magic Link authentication with Resend email integration - Background audio processing (ffmpeg transcode + waveform peaks) - Role-based access control (Owner, Engineers, Artist, Label, Management, Viewer) - Toast notifications, skeleton loading, responsive layout - Docker deployment setup (API + Web + Postgres) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
696 B
Docker
24 lines
696 B
Docker
FROM oven/bun:1 AS base
|
|
WORKDIR /app
|
|
|
|
FROM base AS install
|
|
COPY package.json bun.lock ./
|
|
COPY packages/shared/package.json ./packages/shared/
|
|
COPY apps/web/package.json ./apps/web/
|
|
RUN bun install --frozen-lockfile
|
|
|
|
FROM base AS build
|
|
COPY --from=install /app/node_modules ./node_modules
|
|
COPY --from=install /app/packages/shared/node_modules ./packages/shared/node_modules
|
|
COPY --from=install /app/apps/web/node_modules ./apps/web/node_modules
|
|
COPY . .
|
|
ENV PUBLIC_API_URL=/api
|
|
RUN cd apps/web && bun run build
|
|
|
|
FROM base AS production
|
|
COPY --from=build /app/apps/web/build ./build
|
|
COPY --from=build /app/apps/web/package.json .
|
|
EXPOSE 3000
|
|
ENV NODE_ENV=production
|
|
CMD ["bun", "./build/index.js"]
|