├── .github └── workflows │ └── python-package.yml ├── .gitignore ├── .readthedocs.yaml ├── AUTHORS.md ├── CHANGELOG.md ├── INSTALL.md ├── LICENSE ├── README.md ├── demos ├── jsonlog.py └── onefile.py ├── docs ├── 010_quickstart.md ├── 015_presets │ ├── 010_nice.md │ ├── 020_empire.md │ └── index.md ├── 016_contrib │ ├── django.md │ └── index.md ├── 020_cli.md ├── 022_config.md ├── 025_configuration │ ├── 01_static │ │ ├── 0100_master_process.md │ │ ├── 0200_networking │ │ │ ├── index.md │ │ │ └── networking_sockets.md │ │ ├── 0300_workers │ │ │ ├── index.md │ │ │ └── workers_cheapening.md │ │ ├── 0400_main_process │ │ │ ├── index.md │ │ │ └── main_process_actions.md │ │ ├── 0500_caching.md │ │ ├── 0600_routing │ │ │ ├── index.md │ │ │ ├── routing_actions.md │ │ │ ├── routing_modifiers.md │ │ │ ├── routing_routers.md │ │ │ ├── routing_subjects.md │ │ │ └── routing_vars.md │ │ ├── 0610_statics.md │ │ ├── 0650_logging │ │ │ ├── index.md │ │ │ ├── logging_encoders.md │ │ │ └── logging_loggers.md │ │ ├── 0700_alarms │ │ │ ├── alarm_types.md │ │ │ └── index.md │ │ ├── 0710_locks.md │ │ ├── 0720_spooler.md │ │ ├── 0730_queue.md │ │ ├── 0740_applications.md │ │ ├── 0800_monitoring │ │ │ ├── index.md │ │ │ ├── monitoring_collectors.md │ │ │ ├── monitoring_metric_types.md │ │ │ └── monitoring_pushers.md │ │ ├── 0910_python.md │ │ ├── 0920_empire.md │ │ ├── 0960_subscriptions │ │ │ ├── index.md │ │ │ └── subscriptions_algos.md │ │ └── index.md │ └── 02_runtime │ │ ├── 010_platform.md │ │ ├── 020_scheduling.md │ │ ├── 030_mules.md │ │ ├── 040_caching.md │ │ ├── 050_locking.md │ │ ├── 060_signals.md │ │ ├── 063_rpc.md │ │ ├── 070_control.md │ │ ├── 080_spooler.md │ │ ├── 090_logging.md │ │ ├── 093_monitoring.md │ │ ├── alarms.md │ │ ├── asynced.md │ │ └── index.md ├── 030_uwsgi_stub.md ├── 040_hints.md ├── 050_formatters.md └── index.md ├── mkdocs.yml ├── pyproject.toml ├── ruff.toml ├── src └── uwsgiconf │ ├── __init__.py │ ├── base.py │ ├── cli.py │ ├── config.py │ ├── contrib │ └── django │ │ ├── __init__.py │ │ └── uwsgify │ │ ├── __init__.py │ │ ├── admin │ │ ├── __init__.py │ │ ├── base.py │ │ ├── models.py │ │ ├── realms.py │ │ └── task.py │ │ ├── apps.py │ │ ├── cache.py │ │ ├── locale │ │ └── ru │ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── uwsgi_log.py │ │ │ ├── uwsgi_reload.py │ │ │ ├── uwsgi_run.py │ │ │ ├── uwsgi_stats.py │ │ │ ├── uwsgi_stop.py │ │ │ └── uwsgi_sysinit.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_task_active.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── settings.py │ │ ├── static │ │ └── uwsgify │ │ │ ├── 403.html │ │ │ ├── 404.html │ │ │ ├── 500.html │ │ │ └── 503.html │ │ ├── taskutils │ │ ├── __init__.py │ │ ├── backends.py │ │ ├── context.py │ │ ├── decorators.py │ │ └── models.py │ │ ├── templates │ │ └── admin │ │ │ └── uwsgify │ │ │ └── onepage.html │ │ ├── toolbox.py │ │ ├── utils.py │ │ └── uwsgiinit.py │ ├── emulator │ ├── __init__.py │ ├── caching.py │ ├── locking.py │ ├── mules.py │ ├── rpc.py │ ├── scheduling.py │ └── signals.py │ ├── exceptions.py │ ├── formatters.py │ ├── maintenance.py │ ├── options │ ├── __init__.py │ ├── alarm_types.py │ ├── alarms.py │ ├── applications.py │ ├── caching.py │ ├── empire.py │ ├── locks.py │ ├── logging.py │ ├── logging_encoders.py │ ├── logging_loggers.py │ ├── main_process.py │ ├── main_process_actions.py │ ├── master_process.py │ ├── monitoring.py │ ├── monitoring_collectors.py │ ├── monitoring_metric_types.py │ ├── monitoring_pushers.py │ ├── networking.py │ ├── networking_sockets.py │ ├── python.py │ ├── queue.py │ ├── routing.py │ ├── routing_actions.py │ ├── routing_modifiers.py │ ├── routing_routers.py │ ├── routing_subjects.py │ ├── routing_vars.py │ ├── spooler.py │ ├── statics.py │ ├── subscriptions.py │ ├── subscriptions_algos.py │ ├── workers.py │ └── workers_cheapening.py │ ├── presets │ ├── __init__.py │ ├── empire.py │ └── nice.py │ ├── runtime │ ├── __init__.py │ ├── alarms.py │ ├── asynced.py │ ├── caching.py │ ├── control.py │ ├── locking.py │ ├── logging.py │ ├── monitoring.py │ ├── mules.py │ ├── platform.py │ ├── request.py │ ├── rpc.py │ ├── scheduling.py │ ├── signals.py │ ├── spooler.py │ └── websockets.py │ ├── settings.py │ ├── sysinit.py │ ├── typehints.py │ ├── utils.py │ ├── uwsgi.py │ └── uwsgi_stub.py ├── tests ├── __init__.py ├── confs │ ├── __init__.py │ ├── dummy.py │ └── dummyone.py ├── conftest.py ├── contrib │ ├── __init__.py │ ├── django │ │ ├── __init__.py │ │ ├── taskutils │ │ │ ├── __init__.py │ │ │ ├── backends │ │ │ │ ├── __init__.py │ │ │ │ ├── test_cache.py │ │ │ │ ├── test_db.py │ │ │ │ └── test_dummy.py │ │ │ └── test_task_model.py │ │ ├── test_admin.py │ │ ├── test_basic.py │ │ ├── test_cache.py │ │ └── test_commands.py │ ├── urls.py │ └── uwsgicfg.py ├── options │ ├── __init__.py │ ├── test_alarms.py │ ├── test_applications.py │ ├── test_caching.py │ ├── test_empire.py │ ├── test_locks.py │ ├── test_logging.py │ ├── test_main_process.py │ ├── test_master_process.py │ ├── test_monitoring.py │ ├── test_networking.py │ ├── test_python.py │ ├── test_queue.py │ ├── test_routing.py │ ├── test_routing_modifiers.py │ ├── test_routing_routers.py │ ├── test_spooler.py │ ├── test_statics.py │ ├── test_subscriptions.py │ ├── test_sysinit.py │ └── test_workers.py ├── presets │ ├── __init__.py │ ├── test_empire_preset.py │ └── test_nice.py ├── runtime │ ├── __init__.py │ ├── test_basic.py │ ├── test_runtime_caching.py │ ├── test_runtime_locking.py │ ├── test_runtime_monitoring.py │ ├── test_runtime_mules.py │ ├── test_runtime_platform.py │ ├── test_runtime_rpc.py │ ├── test_runtime_scheduling.py │ ├── test_runtime_signals.py │ └── test_runtime_spooler.py ├── test_config.py ├── test_utils.py └── testapp │ ├── __init__.py │ └── models.py └── tools ├── localize.py └── makemigrations.py /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/README.md -------------------------------------------------------------------------------- /demos/jsonlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/demos/jsonlog.py -------------------------------------------------------------------------------- /demos/onefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/demos/onefile.py -------------------------------------------------------------------------------- /docs/010_quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/010_quickstart.md -------------------------------------------------------------------------------- /docs/015_presets/010_nice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/015_presets/010_nice.md -------------------------------------------------------------------------------- /docs/015_presets/020_empire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/015_presets/020_empire.md -------------------------------------------------------------------------------- /docs/015_presets/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/015_presets/index.md -------------------------------------------------------------------------------- /docs/016_contrib/django.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/016_contrib/django.md -------------------------------------------------------------------------------- /docs/016_contrib/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/016_contrib/index.md -------------------------------------------------------------------------------- /docs/020_cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/020_cli.md -------------------------------------------------------------------------------- /docs/022_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/022_config.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0100_master_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0100_master_process.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0200_networking/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0200_networking/index.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0200_networking/networking_sockets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0200_networking/networking_sockets.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0300_workers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0300_workers/index.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0300_workers/workers_cheapening.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0300_workers/workers_cheapening.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0400_main_process/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0400_main_process/index.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0400_main_process/main_process_actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0400_main_process/main_process_actions.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0500_caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0500_caching.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0600_routing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0600_routing/index.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0600_routing/routing_actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0600_routing/routing_actions.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0600_routing/routing_modifiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0600_routing/routing_modifiers.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0600_routing/routing_routers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0600_routing/routing_routers.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0600_routing/routing_subjects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0600_routing/routing_subjects.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0600_routing/routing_vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0600_routing/routing_vars.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0610_statics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0610_statics.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0650_logging/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0650_logging/index.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0650_logging/logging_encoders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0650_logging/logging_encoders.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0650_logging/logging_loggers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0650_logging/logging_loggers.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0700_alarms/alarm_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0700_alarms/alarm_types.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0700_alarms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0700_alarms/index.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0710_locks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0710_locks.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0720_spooler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0720_spooler.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0730_queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0730_queue.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0740_applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0740_applications.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0800_monitoring/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0800_monitoring/index.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0800_monitoring/monitoring_collectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0800_monitoring/monitoring_collectors.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0800_monitoring/monitoring_metric_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0800_monitoring/monitoring_metric_types.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0800_monitoring/monitoring_pushers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0800_monitoring/monitoring_pushers.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0910_python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0910_python.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0920_empire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0920_empire.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0960_subscriptions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0960_subscriptions/index.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/0960_subscriptions/subscriptions_algos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/0960_subscriptions/subscriptions_algos.md -------------------------------------------------------------------------------- /docs/025_configuration/01_static/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/01_static/index.md -------------------------------------------------------------------------------- /docs/025_configuration/02_runtime/010_platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/02_runtime/010_platform.md -------------------------------------------------------------------------------- /docs/025_configuration/02_runtime/020_scheduling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/02_runtime/020_scheduling.md -------------------------------------------------------------------------------- /docs/025_configuration/02_runtime/030_mules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/02_runtime/030_mules.md -------------------------------------------------------------------------------- /docs/025_configuration/02_runtime/040_caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/02_runtime/040_caching.md -------------------------------------------------------------------------------- /docs/025_configuration/02_runtime/050_locking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/02_runtime/050_locking.md -------------------------------------------------------------------------------- /docs/025_configuration/02_runtime/060_signals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/02_runtime/060_signals.md -------------------------------------------------------------------------------- /docs/025_configuration/02_runtime/063_rpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/02_runtime/063_rpc.md -------------------------------------------------------------------------------- /docs/025_configuration/02_runtime/070_control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/02_runtime/070_control.md -------------------------------------------------------------------------------- /docs/025_configuration/02_runtime/080_spooler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/02_runtime/080_spooler.md -------------------------------------------------------------------------------- /docs/025_configuration/02_runtime/090_logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/02_runtime/090_logging.md -------------------------------------------------------------------------------- /docs/025_configuration/02_runtime/093_monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/02_runtime/093_monitoring.md -------------------------------------------------------------------------------- /docs/025_configuration/02_runtime/alarms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/02_runtime/alarms.md -------------------------------------------------------------------------------- /docs/025_configuration/02_runtime/asynced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/02_runtime/asynced.md -------------------------------------------------------------------------------- /docs/025_configuration/02_runtime/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/025_configuration/02_runtime/index.md -------------------------------------------------------------------------------- /docs/030_uwsgi_stub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/030_uwsgi_stub.md -------------------------------------------------------------------------------- /docs/040_hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/040_hints.md -------------------------------------------------------------------------------- /docs/050_formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/050_formatters.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/docs/index.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/pyproject.toml -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/ruff.toml -------------------------------------------------------------------------------- /src/uwsgiconf/__init__.py: -------------------------------------------------------------------------------- 1 | VERSION = '2.2.1' -------------------------------------------------------------------------------- /src/uwsgiconf/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/base.py -------------------------------------------------------------------------------- /src/uwsgiconf/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/cli.py -------------------------------------------------------------------------------- /src/uwsgiconf/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/config.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/__init__.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/__init__.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/admin/__init__.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/admin/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/admin/base.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/admin/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/admin/models.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/admin/realms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/admin/realms.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/admin/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/admin/task.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/apps.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/cache.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/management/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/management/commands/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/management/commands/_base.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/management/commands/uwsgi_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/management/commands/uwsgi_log.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/management/commands/uwsgi_reload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/management/commands/uwsgi_reload.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/management/commands/uwsgi_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/management/commands/uwsgi_run.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/management/commands/uwsgi_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/management/commands/uwsgi_stats.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/management/commands/uwsgi_stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/management/commands/uwsgi_stop.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/management/commands/uwsgi_sysinit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/management/commands/uwsgi_sysinit.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/migrations/0002_task_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/migrations/0002_task_active.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/models.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/settings.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/static/uwsgify/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/static/uwsgify/403.html -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/static/uwsgify/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/static/uwsgify/404.html -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/static/uwsgify/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/static/uwsgify/500.html -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/static/uwsgify/503.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/static/uwsgify/503.html -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/taskutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/taskutils/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/taskutils/backends.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/taskutils/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/taskutils/context.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/taskutils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/taskutils/decorators.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/taskutils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/taskutils/models.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/templates/admin/uwsgify/onepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/templates/admin/uwsgify/onepage.html -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/toolbox.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/utils.py -------------------------------------------------------------------------------- /src/uwsgiconf/contrib/django/uwsgify/uwsgiinit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/contrib/django/uwsgify/uwsgiinit.py -------------------------------------------------------------------------------- /src/uwsgiconf/emulator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/uwsgiconf/emulator/caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/emulator/caching.py -------------------------------------------------------------------------------- /src/uwsgiconf/emulator/locking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/emulator/locking.py -------------------------------------------------------------------------------- /src/uwsgiconf/emulator/mules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/emulator/mules.py -------------------------------------------------------------------------------- /src/uwsgiconf/emulator/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/emulator/rpc.py -------------------------------------------------------------------------------- /src/uwsgiconf/emulator/scheduling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/emulator/scheduling.py -------------------------------------------------------------------------------- /src/uwsgiconf/emulator/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/emulator/signals.py -------------------------------------------------------------------------------- /src/uwsgiconf/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/exceptions.py -------------------------------------------------------------------------------- /src/uwsgiconf/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/formatters.py -------------------------------------------------------------------------------- /src/uwsgiconf/maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/maintenance.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/__init__.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/alarm_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/alarm_types.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/alarms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/alarms.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/applications.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/caching.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/empire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/empire.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/locks.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/logging.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/logging_encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/logging_encoders.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/logging_loggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/logging_loggers.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/main_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/main_process.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/main_process_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/main_process_actions.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/master_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/master_process.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/monitoring.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/monitoring_collectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/monitoring_collectors.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/monitoring_metric_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/monitoring_metric_types.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/monitoring_pushers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/monitoring_pushers.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/networking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/networking.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/networking_sockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/networking_sockets.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/python.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/queue.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/routing.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/routing_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/routing_actions.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/routing_modifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/routing_modifiers.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/routing_routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/routing_routers.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/routing_subjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/routing_subjects.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/routing_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/routing_vars.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/spooler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/spooler.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/statics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/statics.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/subscriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/subscriptions.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/subscriptions_algos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/subscriptions_algos.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/workers.py -------------------------------------------------------------------------------- /src/uwsgiconf/options/workers_cheapening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/options/workers_cheapening.py -------------------------------------------------------------------------------- /src/uwsgiconf/presets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/uwsgiconf/presets/empire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/presets/empire.py -------------------------------------------------------------------------------- /src/uwsgiconf/presets/nice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/presets/nice.py -------------------------------------------------------------------------------- /src/uwsgiconf/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/uwsgiconf/runtime/alarms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/runtime/alarms.py -------------------------------------------------------------------------------- /src/uwsgiconf/runtime/asynced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/runtime/asynced.py -------------------------------------------------------------------------------- /src/uwsgiconf/runtime/caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/runtime/caching.py -------------------------------------------------------------------------------- /src/uwsgiconf/runtime/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/runtime/control.py -------------------------------------------------------------------------------- /src/uwsgiconf/runtime/locking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/runtime/locking.py -------------------------------------------------------------------------------- /src/uwsgiconf/runtime/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/runtime/logging.py -------------------------------------------------------------------------------- /src/uwsgiconf/runtime/monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/runtime/monitoring.py -------------------------------------------------------------------------------- /src/uwsgiconf/runtime/mules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/runtime/mules.py -------------------------------------------------------------------------------- /src/uwsgiconf/runtime/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/runtime/platform.py -------------------------------------------------------------------------------- /src/uwsgiconf/runtime/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/runtime/request.py -------------------------------------------------------------------------------- /src/uwsgiconf/runtime/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/runtime/rpc.py -------------------------------------------------------------------------------- /src/uwsgiconf/runtime/scheduling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/runtime/scheduling.py -------------------------------------------------------------------------------- /src/uwsgiconf/runtime/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/runtime/signals.py -------------------------------------------------------------------------------- /src/uwsgiconf/runtime/spooler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/runtime/spooler.py -------------------------------------------------------------------------------- /src/uwsgiconf/runtime/websockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/runtime/websockets.py -------------------------------------------------------------------------------- /src/uwsgiconf/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/settings.py -------------------------------------------------------------------------------- /src/uwsgiconf/sysinit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/sysinit.py -------------------------------------------------------------------------------- /src/uwsgiconf/typehints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/typehints.py -------------------------------------------------------------------------------- /src/uwsgiconf/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/utils.py -------------------------------------------------------------------------------- /src/uwsgiconf/uwsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/uwsgi.py -------------------------------------------------------------------------------- /src/uwsgiconf/uwsgi_stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/src/uwsgiconf/uwsgi_stub.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/confs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/confs/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/confs/dummy.py -------------------------------------------------------------------------------- /tests/confs/dummyone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/confs/dummyone.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/contrib/django/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/contrib/django/taskutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/contrib/django/taskutils/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/contrib/django/taskutils/backends/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/contrib/django/taskutils/backends/test_cache.py -------------------------------------------------------------------------------- /tests/contrib/django/taskutils/backends/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/contrib/django/taskutils/backends/test_db.py -------------------------------------------------------------------------------- /tests/contrib/django/taskutils/backends/test_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/contrib/django/taskutils/backends/test_dummy.py -------------------------------------------------------------------------------- /tests/contrib/django/taskutils/test_task_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/contrib/django/taskutils/test_task_model.py -------------------------------------------------------------------------------- /tests/contrib/django/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/contrib/django/test_admin.py -------------------------------------------------------------------------------- /tests/contrib/django/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/contrib/django/test_basic.py -------------------------------------------------------------------------------- /tests/contrib/django/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/contrib/django/test_cache.py -------------------------------------------------------------------------------- /tests/contrib/django/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/contrib/django/test_commands.py -------------------------------------------------------------------------------- /tests/contrib/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/contrib/urls.py -------------------------------------------------------------------------------- /tests/contrib/uwsgicfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/contrib/uwsgicfg.py -------------------------------------------------------------------------------- /tests/options/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/options/test_alarms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_alarms.py -------------------------------------------------------------------------------- /tests/options/test_applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_applications.py -------------------------------------------------------------------------------- /tests/options/test_caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_caching.py -------------------------------------------------------------------------------- /tests/options/test_empire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_empire.py -------------------------------------------------------------------------------- /tests/options/test_locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_locks.py -------------------------------------------------------------------------------- /tests/options/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_logging.py -------------------------------------------------------------------------------- /tests/options/test_main_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_main_process.py -------------------------------------------------------------------------------- /tests/options/test_master_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_master_process.py -------------------------------------------------------------------------------- /tests/options/test_monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_monitoring.py -------------------------------------------------------------------------------- /tests/options/test_networking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_networking.py -------------------------------------------------------------------------------- /tests/options/test_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_python.py -------------------------------------------------------------------------------- /tests/options/test_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_queue.py -------------------------------------------------------------------------------- /tests/options/test_routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_routing.py -------------------------------------------------------------------------------- /tests/options/test_routing_modifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_routing_modifiers.py -------------------------------------------------------------------------------- /tests/options/test_routing_routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_routing_routers.py -------------------------------------------------------------------------------- /tests/options/test_spooler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_spooler.py -------------------------------------------------------------------------------- /tests/options/test_statics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_statics.py -------------------------------------------------------------------------------- /tests/options/test_subscriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_subscriptions.py -------------------------------------------------------------------------------- /tests/options/test_sysinit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_sysinit.py -------------------------------------------------------------------------------- /tests/options/test_workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/options/test_workers.py -------------------------------------------------------------------------------- /tests/presets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/presets/test_empire_preset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/presets/test_empire_preset.py -------------------------------------------------------------------------------- /tests/presets/test_nice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/presets/test_nice.py -------------------------------------------------------------------------------- /tests/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/runtime/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/runtime/test_basic.py -------------------------------------------------------------------------------- /tests/runtime/test_runtime_caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/runtime/test_runtime_caching.py -------------------------------------------------------------------------------- /tests/runtime/test_runtime_locking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/runtime/test_runtime_locking.py -------------------------------------------------------------------------------- /tests/runtime/test_runtime_monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/runtime/test_runtime_monitoring.py -------------------------------------------------------------------------------- /tests/runtime/test_runtime_mules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/runtime/test_runtime_mules.py -------------------------------------------------------------------------------- /tests/runtime/test_runtime_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/runtime/test_runtime_platform.py -------------------------------------------------------------------------------- /tests/runtime/test_runtime_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/runtime/test_runtime_rpc.py -------------------------------------------------------------------------------- /tests/runtime/test_runtime_scheduling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/runtime/test_runtime_scheduling.py -------------------------------------------------------------------------------- /tests/runtime/test_runtime_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/runtime/test_runtime_signals.py -------------------------------------------------------------------------------- /tests/runtime/test_runtime_spooler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/runtime/test_runtime_spooler.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tests/testapp/models.py -------------------------------------------------------------------------------- /tools/localize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tools/localize.py -------------------------------------------------------------------------------- /tools/makemigrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/uwsgiconf/HEAD/tools/makemigrations.py --------------------------------------------------------------------------------