Metadata-Version: 1.1
Name: getitfixed
Version: 1.0.12.dev20200419
Summary: getitfixed
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description: GetItFixed!
        ===========
        
        Documentation
        -------------
        Build the docs
        
        .. code-block:: bash
        
            cd getitfixed/docs
            make html
        
        Demo :
        https://geomapfish-demo.camptocamp.com/getitfixed/getitfixed/issues
        
        Create a development instance
        -----------------------------
        
        .. code-block:: bash
        
            git clone git@github.com:camptocamp/getitfixed.git
            cd getitfixed
            make meacoffee
        
        Public interface should be available at:
        http://localhost:8080/getitfixed/issues
        
        Admin interface should be available at:
        http://localhost:8080/getitfixed_admin/issues
        
        Generate a new alembic revision
        -------------------------------
        
        Before the first release we will overwrite the first migration:
        
        .. code-block:: bash
        
            rm -rf getitfixed/alembic/versions/*.py
            cat <<<EOF | docker-compose exec --user postgres db psql -d getitfixed
            DROP SCHEMA getitfixed CASCADE;
            CREATE SCHEMA getitfixed;
            GRANT ALL ON SCHEMA getitfixed TO getitfixed;
            EOF
        
        .. code-block:: bash
        
            docker-compose run --rm --user `id -u ` getitfixed \
                alembic -c /app/alembic.ini -n getitfixed revision --autogenerate -m 'First revision'
        
        Now try it:
        
        .. code-block:: bash
        
            docker-compose run --rm --user `id -u ` getitfixed \
                alembic -c /app/alembic.ini -n getitfixed upgrade head
        
        Email
        -----
        
        In development we use a custom SMTP server. All emails will be available
        at the following address:
        
        http://localhost:8082/webmail/?_task=mail&_mbox=INBOX
        
        
        0.0
        ---
        
        -  Initial version
        
Keywords: web wsgi bfg pylons pyramid
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Framework :: Pyramid
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
