Metadata-Version: 2.1
Name: marigold
Version: 0.1.0
Summary: Marigold is a tiny server used to examine and compare the contents of hierarchical structured files.
Home-page: https://github.com/tilmann-bartsch/marigold
Author: Tilmann Bartsch
License: MIT
Keywords: simulation productivity hierarchy
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Requires-Python: ~= 3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Marigold

[![PyPI pyversions](https://img.shields.io/pypi/pyversions/marigold)](https://pypi.org/project/marigold/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Commits](https://img.shields.io/github/last-commit/tilmann-bartsch/marigold/master)](https://github.com/tilmann-bartsch/marigold/commits/master)

Marigold is a tiny server used to examine and compare the contents of hierarchical structured files.

<p align="center">
  <img width="65%" src="https://github.com/tilmann-bartsch/marigold/raw/master/example/marigold/african/1.jpg">
</p>

## Installation

Pull docker image from [hub.docker.com](hub.docker.com) and run it for the files located in
the folder `content`.
```shell
docker pull tbartsch/marigold
docker run \
    -p 8080:8080 \
    --mount type=bind,source="$(pwd)"/content,target=/app/content \
    tbartsch/marigold:latest
```

Run development server in repository
```shell
python app/run.py --directory example/marigold
```

Build and run docker image from repository
```shell
docker image build -t marigold:latest . || exit
export PORT=8080
export DIRECTORY=example/
docker run -it \
    -p 8080:8080 \
    --mount type=bind,source="$(pwd)"/example/marigold,target=/app/content \
    marigold:latest
```

## Icons

This project uses icons of [remixicon](https://github.com/Remix-Design/remixicon) project.

## Changelog
This library adheres to a [semantic versioning](https://semver.org/) scheme.
See [CHANGELOG.md](https://github.com/tilmann-bartsch/rportion/blob/master/CHANGELOG.md) for the list of changes.

## Contributions
Contributions are very welcome! Feel free to report bugs or suggest new features using GitHub issues and/or pull requests.

## License
Distributed under [MIT License](https://github.com/tilmann-bartsch/rportion/blob/master/LICENSE).
