howto:web_app
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
howto:web_app [2023/03/13 21:12] – Add venv and uwsgi sections oxrush | howto:web_app [2023/07/29 11:11] (current) – removed tcmal | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ======= Deploying a web application ======= | ||
- | This how-to guide will, as an example, show how to deploy a Flask web application, | ||
- | |||
- | Assume the app consists of, among other things, a python file called '' | ||
- | |||
- | ===== Setting up the virtual environment ===== | ||
- | |||
- | Once you have your app on the appropriate virtual machine, the first step is to create a virtual environment. | ||
- | |||
- | Make sure you are in your project folder and run the command '' | ||
- | |||
- | You can now activate this environment by running '' | ||
- | |||
- | With the environment activated, install any Python modules required for your app. | ||
- | |||
- | ===== uWSGI ===== | ||
- | |||
- | If uWSGI is not installed on the virtual machine, it will need to be installed. If you do not have permissions to do so you may have to ask someone who does. | ||
- | |||
- | Now, pick a port number which is not already in use on the machine. For this tutorial, we will use '' | ||
- | |||
- | You need a uWSGI ini file; the name is not important so we will call it '' | ||
- | < | ||
- | [uwsgi] | ||
- | strict = true | ||
- | processes = 4 | ||
- | master = true | ||
- | die-on-term = true | ||
- | module = main:app | ||
- | virtualenv = env | ||
- | http-socket = 0.0.0.0: | ||
- | </ | ||
- | |||
- | ===== Testing ===== |
howto/web_app.1678741942.txt.gz · Last modified: 2023/03/13 21:12 by oxrush