Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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`.