You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- after setup, deploy prints `Deploying to <Project> / <Branch> / <App>`; later deploys print a compact target header such as `Deploying ./j1 to j1 / main / j1`
631
631
- deploy progress uses short stage copy (`Building locally...`, `Built <size>`, `Uploading...`, `Uploaded`, `Deploying...`, `Deployed`) and never prints `Status: running` or `Deployment is running at ...`
632
632
- success human output prints `Live in <duration>`, the URL on its own line, and `Logs prisma-cli app logs`
633
-
- accepts repeated `--env NAME=VALUE` flags
633
+
- accepts repeated `--env NAME=VALUE` flags and dotenv file paths such as `--env .env`
634
634
- supports `--db` for preview Branches to create a new empty Prisma Postgres database, apply a supported local Prisma schema source when one exists, and write branch-scoped `DATABASE_URL` and `DIRECT_URL` overrides through the existing `project env` storage
635
635
- supports `--no-db` to suppress automatic database prompting for the deploy
636
636
-`--db` and `--no-db` are mutually exclusive; passing both is rejected
@@ -645,7 +645,7 @@ Behavior:
645
645
- when no supported Prisma schema source is found, `--db` still creates the database and env overrides but skips schema setup
646
646
- known non-Postgres Prisma sources do not trigger automatic database prompting; explicit `--db` is rejected because the created database is Prisma Postgres
647
647
- if schema setup fails, deploy stops before the app build/deploy starts
648
-
-inline `--env DATABASE_URL=...` or `--env DIRECT_URL=...` suppresses automatic database prompting; combining those inline env vars with `--db` is rejected
648
+
-`--env DATABASE_URL=...`, `--env DIRECT_URL=...`, or the same keys loaded from an env file suppress automatic database prompting; combining those database env vars with `--db` is rejected
649
649
- maps user-facing framework names to deploy build strategies
650
650
- uses `src/index.ts` as the Hono deploy entrypoint when the app has no `package.json#main` or `package.json#module` and that file exists
651
651
- supports vanilla Bun apps with `--framework bun` using `package.json#main` or `package.json#module`, or with `--entry <path>`
0 commit comments