93e26d749d
Build & Deploy Mobile / build-and-deploy (push) Failing after 10s
The /api/chat/daily route accepted a client-supplied userId with no auth check. Require a verified Bearer JWT and derive the user from the token instead. Also drop the manual openssl install and --schema flag from the Dockerfile now that a second `prisma generate` runs in the runner stage, and add a standard .dockerignore. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LwWLS2FYnE9ofqDF9hQFxA
68 lines
767 B
Plaintext
68 lines
767 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
package-lock.json
|
|
.opencode/memories.md
|
|
|
|
# Build outputs
|
|
dist/
|
|
.next/
|
|
.netlify/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Testing
|
|
coverage/
|
|
playwright-report/
|
|
test-results/
|
|
|
|
# Secrets (DO NOT COMMIT)
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.p12
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.sql
|
|
!infrastructure/postgres/init.sql
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Deno (not used in this project)
|
|
deno.lock
|
|
|
|
# SQLite dev database
|
|
dev.db
|
|
dev.db-journal
|
|
prisma/dev.db
|
|
prisma/dev.db-journal
|
|
|
|
# Generated service worker (serwist build output)
|
|
public/sw.js
|
|
|
|
# Claude (workspace config, not project code)
|
|
.claude/*
|
|
!.claude/commands/
|
|
|
|
# Netlify
|
|
.functions/ |