Hey there,
I have a docker container that uses a multi stage build, e.g. the first container builds the app with uv and then copies the result to a second container.
Now the tricky part - how to deploy the migrations folder?
I moved it to src/windfish/migrations, so it gets copied into the venv during installation, but how do I tell aerich where to look for the files?
Especially since development these files aren't in the venv, but in my local src folder.
What's the best idea here?
Hey there,
I have a docker container that uses a multi stage build, e.g. the first container builds the app with
uvand then copies the result to a second container.Now the tricky part - how to deploy the migrations folder?
I moved it to
src/windfish/migrations, so it gets copied into the venv during installation, but how do I tell aerich where to look for the files?Especially since development these files aren't in the venv, but in my local src folder.
What's the best idea here?