This recipe for zc.buildout creates a script that can be used as an entry point for WSGI servers.
Project description
cykooz.recipe.wsgi
This recipe for buildout creates a script that can be used as an entry point for WSGI servers (mod_wsgi, uwsgi and other).
Usage
This is a minimal buildout.cfg file which creates a WSGI script mod_wsgi can use:
[buildout]
parts = wsgi
[wsgi]
recipe = cykooz.recipe.wsgi
eggs = myapplication
app_fabric = myapplication.wsgi:get_app
environ =
CHAMELEON_CACHE=true
CHAMELEON_STRICT=true
initialization =
import logging
logging.info('Run myapplication')
This will create a small python script in the bin directory called wsgi which mod_wsgi can load. You can also use the optional extra-paths option to specify extra paths that are added to the python system path.
You may also use the script-name option to specify the name of the generated script file, if wsgi is unsuitable. Or you may use the target option to specify a full path of the generated script file.
Changes
1.0.0 (2017-03-02)
First release.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file cykooz.recipe.wsgi-1.0.0.tar.gz.
File metadata
- Download URL: cykooz.recipe.wsgi-1.0.0.tar.gz
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4cc49502c9bdf2e5212ad47d5fbd9fe5a77278a190f90ab52ac57ccaf15373dd
|
|
| MD5 |
1d6246b224d9abb8358c96113e8ccd5b
|
|
| BLAKE2b-256 |
fe0e02f7217aacffe3ce942ceadafeb87360547aa8eb8b6128592ed31b05795f
|