Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/babylonhealth/nameko-extras
Nameko run with autoloading, logging file CLI option
https://github.com/babylonhealth/nameko-extras
autoreload autoreload-files logging nameko
Last synced: 3 months ago
JSON representation
Nameko run with autoloading, logging file CLI option
- Host: GitHub
- URL: https://github.com/babylonhealth/nameko-extras
- Owner: babylonhealth
- License: apache-2.0
- Created: 2017-08-21T09:56:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-21T12:35:47.000Z (over 5 years ago)
- Last Synced: 2024-10-29T08:30:44.873Z (4 months ago)
- Topics: autoreload, autoreload-files, logging, nameko
- Language: Python
- Size: 17.6 KB
- Stars: 6
- Watchers: 56
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# nameko-extras
Some extra functionality for nameko.
### Installation
```bash
pip install nameko-extras
```## Logging config from file
Logging may be configured from a file through the ``--logging-config-file`` option.
```bash
nameko_extras run [:] --config ./foobar.yaml --logging-config-file ./logging.conf
```## Autoreloading
For autoreloading simply add this key to your nameko config file.
```yaml
AUTORELOAD: true
```And instead of running your service with the `nameko run` command, use `nameko_extras run`.