|
You are here |
manuel.kiessling.net | ||
| | | | |
mattstauffer.com
|
|
| | | | | If you're here, you've likely already heard about Taylor Otwell's announcement at Laracon about Homestead and Forge. For an interview with | |
| | | | |
nikgrozev.com
|
|
| | | | | This post covers how to achieve a more advanced CloudStone deployment with a dedicated load balancer in front of the web server, so that new web servers can ... | |
| | | | |
www.jeremykun.com
|
|
| | | | | We're ironically searching for counterexamples to the Riemann Hypothesis. Setting up Pytest Adding a Database Search Strategies Unbounded Integers In this article we'll deploy the application on a server, so that it can search for RH counterexamples even when I close my laptop. Servers and containers When deploying applications to servers, reproducibility is crucial. You don't want your application to depend on the details of the computer it's running on. This is a higher-level version of the same principle behind Python virtual environments, but it applies to collections of programs, possibly written in different languages and running on different computers. | |
| | | | |
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. | ||