You are here |
me.micahrl.com | ||
| | | |
www.mattlayman.com
|
|
| | | | Are you using Python and thinking about containers to deploy your app? Before you jump to Docker, consider other package formats that may fit better. This article explores one such format from LinkedIn. | |
| | | |
gehrcke.de
|
|
| | | | In this article I show how to create a minimal Python command line application, called 'bootstrap'. I describe how to set it up for publication on PyPI, after which the user can conveni... | |
| | | |
notes.volution.ro
|
|
| | | | In support of software packages that come in the form of a single binary executable (statically linked or portable), that one can just copy anywhere in `${PATH}` and execute, without needing `sudo`, or downloading half the distribution's packages as dependencies. | |
| | | |
blog.chand1012.dev
|
|
| | In this tutorial, we will be setting up a Flask server using Gunicorn and NGINX on Ubuntu 18.04 LTS. Requirements Any system running Ubuntu 18.04 LTS with SSH enabled. An SSH client. Installing After connecting via SSH to your server as root, run the following commands to install the required programs: apt update apt upgrade -y apt install nginx python3 python3-pip python3-venv This will install Python, NGINX, and the virtual environment needed to run the app. |