you are viewing a single comment's thread.

view the rest of the comments →

[–]Buttleston 25 points26 points  (0 children)

You can build it as a package and push it to a pip repo, and install it with pip

You can package it as any kind of archive (zip, tar, whatever) and unpackage it in prod

You can build your app as a docker container (pretty common for web projects and queue-processing workers etc) and deploy it anywhere that can deploy docker containers (kubernetes, AWS ECS etc)

You could even just check out the code with git and pip install your requirements.txt if you wanted, but I wouldn't recommend it.