cheatingchelsea/amplify.yml
Derek Slenk 969839c840 Revert to simple environment variable approach
- Remove backend pipeline deployment that was causing IAM issues
- Remove complex secret configuration from backend.ts
- Use simple environment variable approach from Amplify Console

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-27 15:58:04 -04:00

20 lines
No EOL
440 B
YAML

version: 1
frontend:
phases:
preBuild:
commands:
- npm ci
build:
commands:
- echo "Build started on `date`"
- echo "Available environment variables:"
- printenv | grep -E "(YOUTUBE|AMPLIFY)" || echo "No relevant env vars found"
- npm run build
artifacts:
baseDirectory: .next
files:
- '**/*'
cache:
paths:
- node_modules/**/*
- .next/cache/**/*