https://github.com/zweifisch/wsgi-supervisor
reload wsgi application when code changed
https://github.com/zweifisch/wsgi-supervisor
Last synced: 2 months ago
JSON representation
reload wsgi application when code changed
- Host: GitHub
- URL: https://github.com/zweifisch/wsgi-supervisor
- Owner: zweifisch
- Created: 2014-02-19T15:12:11.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-02-24T13:10:36.000Z (over 12 years ago)
- Last Synced: 2026-04-13T03:23:43.616Z (3 months ago)
- Language: Python
- Size: 125 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wsgi supervisor
reload wsgi application when code changed, should be used in development enviroment
depends on inotify, so only works on linux
```sh
Usage: wsgi-supervisor [options]
Options:
-e, --extensions=exts only file with those extensions will be watched
[default: py]
-w, --watch=folders folders to watch
-c, --cwd=dir change dir before running app
-p, --port=port port to bind [default: 3000]
--python=python python excutable [default: python]
Examples:
wsgi-supervisor wsgi:app
wsgi-supervisor -e js,py -w public/js,controllers main:app
```
install via pip
```sh
pip install wsgi-supervisor
```