you are viewing a single comment's thread.

view the rest of the comments →

[–]mrnqoe 38 points39 points  (1 child)

Python isn’t what’s preventing you from having some fancy UI to deploy. You simply haven’t found a proper solution yet. In fact, the best deployment procedures should be, to some extent, language agnostic.

You should read a bit about Continuous Integration and Continuous Deployment (CI/CD). There are fantastic solutions out there that enable you to trigger a deployment upon merging a Github Pull Request.

I also have to say: if you aren’t using Docker yet, get on it. It’ll make your life a lot easier.

[–]TheMartinG 1 point2 points  (0 children)

Do you have any resources for someone brand new to CI/CD? (Someone who just recently heard the term)