├── .gitignore ├── README.md ├── cookiecutter.json ├── requirements.txt └── {{cookiecutter.project_slug}} ├── .gitignore ├── README.md ├── config.py ├── instance └── config.py ├── requirements.txt ├── tests ├── __init__.py ├── conftest.py └── test_controllers.py ├── wsgi.py └── {{cookiecutter.package_slug}} ├── __init__.py ├── commands.py ├── controllers.py ├── extensions.py ├── forms.py ├── models.py ├── routes.py └── ui ├── static ├── css │ └── styles.css └── js │ └── custom.js └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitchormale/cookiecutter-flask-minimal/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitchormale/cookiecutter-flask-minimal/HEAD/README.md -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitchormale/cookiecutter-flask-minimal/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | cookiecutter 2 | 3 | -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitchormale/cookiecutter-flask-minimal/HEAD/{{cookiecutter.project_slug}}/.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitchormale/cookiecutter-flask-minimal/HEAD/{{cookiecutter.project_slug}}/config.py -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/instance/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitchormale/cookiecutter-flask-minimal/HEAD/{{cookiecutter.project_slug}}/instance/config.py -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitchormale/cookiecutter-flask-minimal/HEAD/{{cookiecutter.project_slug}}/requirements.txt -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitchormale/cookiecutter-flask-minimal/HEAD/{{cookiecutter.project_slug}}/tests/conftest.py -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/tests/test_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitchormale/cookiecutter-flask-minimal/HEAD/{{cookiecutter.project_slug}}/tests/test_controllers.py -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitchormale/cookiecutter-flask-minimal/HEAD/{{cookiecutter.project_slug}}/wsgi.py -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/{{cookiecutter.package_slug}}/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitchormale/cookiecutter-flask-minimal/HEAD/{{cookiecutter.project_slug}}/{{cookiecutter.package_slug}}/__init__.py -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/{{cookiecutter.package_slug}}/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitchormale/cookiecutter-flask-minimal/HEAD/{{cookiecutter.project_slug}}/{{cookiecutter.package_slug}}/commands.py -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/{{cookiecutter.package_slug}}/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitchormale/cookiecutter-flask-minimal/HEAD/{{cookiecutter.project_slug}}/{{cookiecutter.package_slug}}/controllers.py -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/{{cookiecutter.package_slug}}/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitchormale/cookiecutter-flask-minimal/HEAD/{{cookiecutter.project_slug}}/{{cookiecutter.package_slug}}/extensions.py -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/{{cookiecutter.package_slug}}/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitchormale/cookiecutter-flask-minimal/HEAD/{{cookiecutter.project_slug}}/{{cookiecutter.package_slug}}/forms.py -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/{{cookiecutter.package_slug}}/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitchormale/cookiecutter-flask-minimal/HEAD/{{cookiecutter.project_slug}}/{{cookiecutter.package_slug}}/models.py -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/{{cookiecutter.package_slug}}/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitchormale/cookiecutter-flask-minimal/HEAD/{{cookiecutter.project_slug}}/{{cookiecutter.package_slug}}/routes.py -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/{{cookiecutter.package_slug}}/ui/static/css/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/{{cookiecutter.package_slug}}/ui/static/js/custom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/{{cookiecutter.package_slug}}/ui/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitchormale/cookiecutter-flask-minimal/HEAD/{{cookiecutter.project_slug}}/{{cookiecutter.package_slug}}/ui/templates/index.html --------------------------------------------------------------------------------