Metadata-Version: 2.1
Name: docker-devbox-ddb
Version: 1.0.0b7
Summary: ddb - Erase environment differences, make developers happy !
Home-page: https://github.com/gfi-centre-ouest/docker-devbox-ddb
Author: Rémi Alvergnat
Author-email: remi.alvergnat@gfi.world
License: MIT
Download-URL: https://pypi.python.org/packages/source/g/docker-devbox-ddb/docker-devbox-ddb-1.0.0-beta7.tar.gz
Description: ddb
        ===
        
        [![PyPI](https://img.shields.io/pypi/v/docker-devbox-ddb)](https://pypi.org/project/docker-devbox-ddb/)
        [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/docker-devbox-ddb)](https://pypi.org/project/docker-devbox-ddb/)
        [![PyPI - License](https://img.shields.io/pypi/l/docker-devbox-ddb)](https://github.com/gfi-centre-ouest/docker-devbox-ddb/blob/develop/LICENSE)
        [![Build Status](https://img.shields.io/travis/gfi-centre-ouest/docker-devbox-ddb.svg)](https://travis-ci.org/gfi-centre-ouest/docker-devbox-ddb)
        [![Code coverage](https://img.shields.io/coveralls/github/gfi-centre-ouest/docker-devbox-ddb)](https://coveralls.io/github/gfi-centre-ouest/docker-devbox-ddb)
        
        **[Erase environment differences, make developers happy !](https://gfi-centre-ouest.github.io/docker-devbox-ddb)**
        
        **ddb** automates application configuration so differences between development, staging and production environment can 
        be erased. It provides features to generate, activate and adjust configuration files based on a single overridable and
        extendable configuration, while enhancing the developer experience and reducing manual operations.
        
        Primarly designed for [docker-compose](https://docs.docker.com/compose/) and [docker-devbox](https://github.com/gfi-centre-ouest/docker-devbox), 
        this tool makes the developer forget about the docker hard stuff by providing commands right into it's PATH, so it's 
        experience looks like everything is native and locally installed.
        
        Thanks to a pluggable, event based and easy to extend architecture, it can bring powerful configuration automation to 
        any technical context.
        
        Install
        -------
        
        **ddb** is supported on Linux and Windows. MacOS is still unsupported, but it should come soon. 
        
        You can [download binary releases on github](https://github.com/gfi-centre-ouest/docker-devbox-ddb/releases), or 
        install on Python >= 3.5 with pip.
        
        ```
        pip install docker-devbox-ddb
        ```
        
        Docs
        ----
        
        [Documentation is available here](https://gfi-centre-ouest.github.io/docker-devbox-ddb)
        
        
        History
        =======
        
        1.0.0-beta7 (2020-07-25)
        ------------------------
        
        - Add MacOS support (no binary package available though)
        - Shell: Add zsh support
        - Jsonnet: Fix an issue when reverse proxy is not defined to traefik.
        - Docs: Add way more docs
        
        1.0.0-beta6 (2020-07-03)
        ------------------------
        
        - Windows Shell: Fix alias generation
        - Jsonnet: Add `redirect_to_https` to ddb.VirtualHost in order to redirect http requests to https
        - Certs/Traefik: Remove previously generated certs when certs:generate event is removed from docker-compose.yml configuration
        
        1.0.0-beta5 (2020-06-26)
        ------------------------
        
        - Fixuid: Add Dockerfile generation when fixuid.yml file is created or deleted
        - Docker: Add `docker.reverse_proxy.certresolver` to setup traefik certresolver globally
        - Docker: Set `docker.restart_policy` default value to `unless-stopped` if `core.env.current` is different of `dev`
        - Jsonnet: Add optional `router_rule` parameter to `ddb.VirtualHost` function in order to override the default `Host(hostname)`.
        For traefik, available values in the [official documentation](https://docs.traefik.io/v2.0/routing/routers/#rule)
        - Templates: Keep the file that match template target name when it has been modified since latest rendering ([#39](https://github.com/gfi-centre-ouest/docker-devbox-ddb/issues/39))
        
        1.0.0-beta4 (2020-06-25)
        ------------------------
        
        - Remove existing file or directory when generating a new file ([#31](https://github.com/gfi-centre-ouest/docker-devbox-ddb/issues/31))
        - Docker: Fix missing `COMPOSE_PROJECT_NAME` and `COMPOSE_NETWORK_NAME` environment variables on ddb activate
        - Jsonnet: Fix a bug when multiple Virtualhost are defined on the same docker-compose service
        
        
        1.0.0-beta3 (2020-06-23)
        ------------------------
        
        - Shell: Add aliases management
        
        
        1.0.0-beta2 (2020-06-08)
        ------------------------
        
        - Docker and Permissions features are now plugged on File feature
        - Docker-compose locally mapped files/directories are now created on `ddb configure` to ensure valid user owning
        - Fix Logging Error in chmod
        - Upgrade chmod-monkey and use it everywhere to improve readability
        
        
        1.0.0-beta1 (2020-05-12)
        ------------------------
        
        - Add `git` feature. Currently, there is only one action : git:fix-files-permissions to update permissions for files 
        based on git index. In order to update permissions of a file in git, use command 
        ```git update-index --chmod=+x foo.sh```. It can be disabled by setting ```git.fix_files_permissions``` to false in 
        configuration.
        - Add `--fail-safe` command line argument to stop on first error.
        - Add `utils.process` module to help running external commands. It makes possible to configure path and additional 
        arguments to any external process invoked by ddb.
        - Default command line argument values can now be customized in configuration using `defaults` key.
        - Fix and issue with traefik and jsonnet docker-compose when `networks` is defined in at least one service definition.
        - Add `permissions` feature to apply chmod on some files.
        - Add windows support for shell integration (cmd.exe only, powershell is still unsupported).
        
        1.0.0-alpha1 (2020-05-10)
        -------------------------
        
        - First release, containing the following features: `certs`, `cookiecutter`, `copy`, `core`, `docker`, `file`, 
        `fixuid`, `gitignore`, `jinja`, `jsonnet`, `run`, `shell`, `smartcd`, `symlinks`, `traefik`, `version`, `ytt`
Keywords: docker docker-compose development environment devops templates jsonnet jinja watch
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
Provides-Extra: dev
