Qovery is a fully-managed cloud platform that runs on your AWS, GCP, Azure and Digital Ocean account where you can host static sites, backend APIs, databases, cron jobs, and all your other apps in one place.
SESSION_SECRET_KEY
as the name, then click on
"Save all".In your Blitz application:
start:production
and an build
command.
We'll call the start script in the Procfile
below. And Heroku will
run the build
script for you on deploy."scripts": {
+ "start:production": "blitz start --port $PORT",
+ "build": "blitz build"
}
Procfile
file inside the root of your project with the
following content.release: npx blitz prisma migrate deploy
web: npm run start:production
Chat with Qovery developers on Discord if you need help.