MANIFEST.in
README.md
setup.cfg
setup.py
apg/__init__.py
apg/commands.py
apg/run.py
apg.egg-info/PKG-INFO
apg.egg-info/SOURCES.txt
apg.egg-info/dependency_links.txt
apg.egg-info/entry_points.txt
apg.egg-info/requires.txt
apg.egg-info/top_level.txt
apg/templates/aiohttp/framework/cookiecutter.json
apg/templates/aiohttp/framework/hooks/post_gen_project.py
apg/templates/aiohttp/framework/hooks/pre_gen_project.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/.dockerignore
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/.gitignore
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/Dockerfile
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/Makefile
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/README.md
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/alembic.ini
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/cli.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/config.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/constants.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/docker-compose.dev.yml
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/docker-compose.test.yml
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/docker-compose.yml
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/entrypoint.sh
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/pylama.ini
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/requirements.txt
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/run.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/app/__init__.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/app/common/__init__.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/app/common/schemas.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/app/common/specs.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/app/exampleapp/__init__.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/app/exampleapp/schemas.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/app/exampleapp/specs.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/app/exampleapp/views.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/app/root/__init__.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/app/root/views.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/__init__.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/database.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/utils.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/webforms.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/api/__init__.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/api/base.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/api/exampleAPI.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/swagger/__init__.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/swagger/static/favicon.ico
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/swagger/static/logo.png
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/swagger/static/swagger-ui-bundle.js
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/swagger/static/swagger-ui-bundle.js.map
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/swagger/static/swagger-ui-standalone-preset.js
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/swagger/static/swagger-ui-standalone-preset.js.map
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/swagger/static/swagger-ui.css
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/swagger/static/swagger-ui.css.map
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/swagger/static/swagger-ui.js
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/swagger/static/swagger-ui.js.map
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/swagger/static/ui.css
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/swagger/static/schemas/Stat.json
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/swagger/templates/index.html
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/lib/swagger/templates/oauth2-redirect.html
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/migrations/README
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/migrations/env.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/migrations/script.py.mako
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/migrations/versions/__init__.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/tests/__init__.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/tests/conftest.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/tests/test_example.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/tests/fake_api/__init__.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/tests/fake_api/base.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/tests/fake_api/example.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/tests/fake_api/resolver.py
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/tests/fake_api/server.crt
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/tests/fake_api/server.csr
apg/templates/aiohttp/framework/{{cookiecutter.app_name}}/tests/fake_api/server.key
apg/templates/aiohttp/module/cookiecutter.json
apg/templates/aiohttp/module/hooks/post_gen_project.py
apg/templates/aiohttp/module/hooks/pre_gen_project.py
apg/templates/aiohttp/module/{{cookiecutter.module_name|lower}}s/__init__.py
apg/templates/aiohttp/module/{{cookiecutter.module_name|lower}}s/models.py
apg/templates/aiohttp/module/{{cookiecutter.module_name|lower}}s/schemas.py
apg/templates/aiohttp/module/{{cookiecutter.module_name|lower}}s/specs.py
apg/templates/aiohttp/module/{{cookiecutter.module_name|lower}}s/test_{{cookiecutter.module_name|lower}}.py
apg/templates/aiohttp/module/{{cookiecutter.module_name|lower}}s/views.py
apg/templates/flask/framework/cookiecutter.json
apg/templates/flask/framework/hooks/post_gen_project.py
apg/templates/flask/framework/hooks/pre_gen_project.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/.dockerignore
apg/templates/flask/framework/{{cookiecutter.app_name}}/.gitignore
apg/templates/flask/framework/{{cookiecutter.app_name}}/Dockerfile
apg/templates/flask/framework/{{cookiecutter.app_name}}/Makefile
apg/templates/flask/framework/{{cookiecutter.app_name}}/README.md
apg/templates/flask/framework/{{cookiecutter.app_name}}/config.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/constants.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/docker-compose.dev.yml
apg/templates/flask/framework/{{cookiecutter.app_name}}/docker-compose.test.yml
apg/templates/flask/framework/{{cookiecutter.app_name}}/docker-compose.yml
apg/templates/flask/framework/{{cookiecutter.app_name}}/entrypoint.sh
apg/templates/flask/framework/{{cookiecutter.app_name}}/pylama.ini
apg/templates/flask/framework/{{cookiecutter.app_name}}/requirements.txt
apg/templates/flask/framework/{{cookiecutter.app_name}}/run.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/app/__init__.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/app/common/__init__.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/app/common/db.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/app/common/decorators.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/app/common/schemas.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/app/common/specs.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/app/common/views.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/app/users/__init__.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/app/users/models.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/app/users/schemas.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/app/users/specs.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/app/users/utils.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/app/users/views.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/__init__.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/auth.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/db.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/factory.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/utils.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/swagger/__init__.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/swagger/docs.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/swagger/parser.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/swagger/static/favicon.ico
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/swagger/static/logo.png
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/swagger/static/swagger-ui-bundle.js
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/swagger/static/swagger-ui-bundle.js.map
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/swagger/static/swagger-ui-standalone-preset.js
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/swagger/static/swagger-ui-standalone-preset.js.map
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/swagger/static/swagger-ui.css
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/swagger/static/swagger-ui.css.map
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/swagger/static/swagger-ui.js
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/swagger/static/swagger-ui.js.map
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/swagger/static/ui.css
apg/templates/flask/framework/{{cookiecutter.app_name}}/lib/swagger/templates/index.html
apg/templates/flask/framework/{{cookiecutter.app_name}}/tests/__init__.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/tests/conftest.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/tests/test_users.py
apg/templates/flask/framework/{{cookiecutter.app_name}}/tests/utils.py
apg/templates/flask/module/cookiecutter.json
apg/templates/flask/module/hooks/post_gen_project.py
apg/templates/flask/module/hooks/pre_gen_project.py
apg/templates/flask/module/{{cookiecutter.module_name|lower}}s/__init__.py
apg/templates/flask/module/{{cookiecutter.module_name|lower}}s/models.py
apg/templates/flask/module/{{cookiecutter.module_name|lower}}s/schemas.py
apg/templates/flask/module/{{cookiecutter.module_name|lower}}s/specs.py
apg/templates/flask/module/{{cookiecutter.module_name|lower}}s/test_{{cookiecutter.module_name|lower}}s.py
apg/templates/flask/module/{{cookiecutter.module_name|lower}}s/views.py
apg/templates/react/framework/cookiecutter.json
apg/templates/react/framework/hooks/post_gen_project.py
apg/templates/react/framework/hooks/pre_gen_project.py
apg/templates/react/framework/{{cookiecutter.app_name}}/.babelrc
apg/templates/react/framework/{{cookiecutter.app_name}}/index.html
apg/templates/react/framework/{{cookiecutter.app_name}}/package.json
apg/templates/react/framework/{{cookiecutter.app_name}}/webpack.config.js
apg/templates/react/framework/{{cookiecutter.app_name}}/src/index.jsx
apg/templates/react/framework/{{cookiecutter.app_name}}/src/components/Root.jsx
apg/utils/__init__.py
apg/utils/validators.py