.gitignore
Ignore dependencies, builds, generated files, and local secrets.
A Runable project should at least ignore its dependencies, generated output, and local variables.
node_modules/
.app/
.output/
.env
.env.*
!.env.example
*.log
.DS_Store
Adjust .output/ and .app/ if you changed distdir or output in runable.config.ts.
Commit sources, configuration, package.json, the lockfile, and .env.example. Generated directories must be reproducible with pnpm install, runable prepare, and runable build.