feat: Add uWSGI config for privatecoffee-dev

Introduce a new uWSGI configuration for the Private.coffee development environment. This setup specifies the main application module, user/group IDs, process management settings, Python plugin usage, virtual environment path, working directory, environment variables, and socket ownership settings. It is tailored to streamline development workflows by ensuring that the server environment closely mirrors production settings while incorporating development-specific features such as debug mode. This addition marks a foundational step in improving local development setup and potentially eases the transition between development and production environments.

This configuration uses environment variables to flag development mode, enabling enhanced logging and debug capabilities without affecting the production settings. It also outlines the setup for socket communication and permissions, ensuring secure and efficient inter-process communication during development.

The choice of uWSGI parameters and settings was made to optimize resource usage and facilitate a more controlled development environment, aiming for consistency across development and deployment stages.
This commit is contained in:
Kumi 2024-06-02 20:43:53 +02:00
parent 30e23957c0
commit f9c23a6fca
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -0,0 +1,16 @@
[uwsgi]
module = main:app
uid = %n
gid = %n
master = true
processes = 5
plugins = python3
virtualenv = /srv/%n/venv/
chdir = /srv/%n/
env = PRIVATECOFFEE_DEV=true
http-socket = /var/run/uwsgi/%n.sock
chown-socket = caddy