A minimalist Python library to deploy apps to CapRover
quickcap is a Python library for deploying python apps to a VPS in just a few lines of code. It wraps CapRover to handle Docker deployment, subdomains, and HTTPS with sensible defaults.
You can deploy an app on its dedicated subdomain in few lines of code
# create the appsetup_app(caprover_server, token, app_name)# deploy the appdeploy(caprover_server, token, app_name, "myapp.py", requirements)# app is deployed on https://app_name.subdomain.tld
{'status': 100, 'description': 'Deploy is done', 'data': {}}