Paste this prompt into Lovable, Bolt, Cursor, Claude or Codex. It hands you a clean zip you can drop on the left.
export-prompt.txt
Package this project into a single ZIP file called app.zip so I can upload it for a security audit.
Include all my source code and config files. Exclude node_modules, .git, any vendor/dependency folders, build output (dist, build, .next, out, .cache), large media/binaries, and log files. Keep the final ZIP under 150 MB.
From the project root, run:
zip -r app.zip . -x "node_modules/*" ".git/*" "dist/*" "build/*" ".next/*" "out/*" ".cache/*" "*.log"
Then tell me the full path to app.zip.