Metadata-Version: 2.1
Name: pydillo
Version: 0.1.1
Summary: Common Dillo Development Module
Author: Erick Salas
Author-email: it@dillostores.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# PyDillo

### Local

```
export PYTHONPATH=/path/to/pydillo:$PYTHONPATH
```

### Docker

0. Buid local **development** docker image

```
bash development.sh
```

1. Run **development** image with local source

```
sudo docker run \
  -it \
  --name pydillo --rm \
  -v /home/ermiry/Documents/Work/pydillo:/home/pydillo \
  itdillo/pydillo:development /bin/bash
```

2. Handle **pydillo** module

```
export PYTHONPATH=$pwd:$PYTHONPATH
```
