How to run migrations in production environment?
I'm using
drizzle
with sveltekit
and ATM I run migrations locally using the following scripts I have in my package.json
,
migrate.ts
file has this,
9 Replies
now in production I have don't have
drizzle-kit
available as I have it installed as a dev
dependency.I found this stackoverflow post,https://stackoverflow.com/questions/77877947/how-to-run-generate-migrate-in-production-on-a-vps-with-sqlite-database-using but the example link provided is dead so I can't what they do to achieve it.
Stack Overflow
How to run generate & migrate in production on a VPS with SQLite da...
So I have a database in development that I run db:generate & db:migrate on to create the database & then run my app that uses that database.
And it works fine.
But how do I do that in produ...
But reading from the post, it seems like they run migrations on their app start.. what does that mean exactly? like run all the code from
migrate.ts
when my app starts?
I would like to keep migration
a separate command ran from script or something if possible.
Can anyone help?Hey, check out this part of the docs: https://orm.drizzle.team/docs/migrations, most likely section 4
If you want Drizzle to manage migrations for you while keeping it a seperate command, running your code in
migrate.ts
before running the start command sees like a good option. You could set up your production start command to be tsx migrate.ts && <sveltekit start command>
which would migrate the database using the generated migrations, and then run the svelte kit app.
Let me know if that made senseSo the
migrate
script I have ATM I need that to run before the svelte
app? and running that script will be my separate "command"..Yes
I see.. is it OK to always run the
migrate
script every time I start app? it mostly just throw warning already exist skipping etc.. but it shouldn't cause any harm right? or should I not run it every time?Yeah it won't hurt anything to run it every time as long as you are not pushing unsafe migrations
I see.