Metadata-Version: 2.1
Name: log-storage
Version: 0.8.2
Summary: Log handler to store messages with a database record and optional file storage.
Home-page: https://github.com/virtualstock/log_storage/
Author: Virtualstock
Author-email: development.team@virtualstock.com
License: MIT
Keywords: Django,Log,App
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: django

# Log Storage

[![CircleCI](https://circleci.com/gh/Virtualstock/log_storage.svg?style=svg)](https://circleci.com/gh/Virtualstock/log_storage)
[![pullreminders](https://pullreminders.com/badge.svg)](https://pullreminders.com?ref=badge)

A django installable app that can be used as log handler to store messages 
with a database record and optional file storage.

## How to install

Add this package as requirement to your django app requirements.txt

```
# requirements.txt
log_storage
```

Add this app to your **INSTALLED_APPS** in your **settings.py**

```
# settings.py
INSTALLED_APPS = (
    'log_storage',
)
```

## Development


### How to install

Clone the project

```
git clone git@github.com:Virtualstock/log_storage.git
```

Install it

```
make setup
```

### How to run tests

```
make test
```

### How to release

Make sure you bump the package version on **setup.py**.

```
make release
```

# License

Licensed under `MIT license`. View [license](LICENSE).


