├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── _new_instance_form.yml │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── build.yml │ ├── deployment-management-bot.yml │ ├── instance-configuration-validation-bot.yml │ ├── paper.yml │ ├── resources │ ├── base_legistar_scraper.py │ └── custom_scraper.py │ ├── scripts │ ├── parse_form.py │ ├── requirements.txt │ └── validate_form.py │ └── test.yml ├── .gitignore ├── .zenodo.json ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cookiecutter.json ├── hooks ├── post_gen_project.py └── pre_gen_project.py ├── local_extensions.py ├── paper ├── assets │ ├── cdp_core_infrastructure.png │ └── event-page-screenshot.png ├── paper.bib └── paper.md ├── setup.cfg └── {{ cookiecutter.hosting_github_repo_name }} ├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── build-main.yml │ ├── check-pr.yml │ ├── deploy-infra.yml │ ├── deploy-web.yml │ ├── event-gather-pipeline.yml │ ├── event-index-pipeline.yml │ ├── process-special-event.yml │ └── run-script.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Justfile ├── LICENSE ├── README.md ├── SETUP └── README.md ├── admin-docs ├── adding-analytics.md ├── customizing-automated-pipelines.md ├── manual-event-gather.md ├── resources │ ├── backfill-event-gather.png │ ├── cookiecutter-interrupt.png │ ├── example-custom-event.py │ ├── special-event-gather.png │ ├── update-and-git-status.png │ ├── vs-code-status.png │ └── workflows.png ├── running-extra-scripts.md └── updating-to-new-cookiecutter-releases.md ├── cookiecutter.yaml ├── infra └── requirements.txt ├── python ├── cdp_{{ cookiecutter.python_municipality_slug }}_backend │ ├── __init__.py │ └── scraper.py ├── event-gather-config.json ├── event-index-config.json ├── setup.cfg └── setup.py └── web ├── .gitignore ├── package.json ├── public ├── cdp-og-seo.png ├── cdp-twitter-seo.png ├── favicon.ico ├── index.html ├── manifest.json └── robots.txt └── src └── index.jsx /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/_new_instance_form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/.github/ISSUE_TEMPLATE/_new_instance_form.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deployment-management-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/.github/workflows/deployment-management-bot.yml -------------------------------------------------------------------------------- /.github/workflows/instance-configuration-validation-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/.github/workflows/instance-configuration-validation-bot.yml -------------------------------------------------------------------------------- /.github/workflows/paper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/.github/workflows/paper.yml -------------------------------------------------------------------------------- /.github/workflows/resources/base_legistar_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/.github/workflows/resources/base_legistar_scraper.py -------------------------------------------------------------------------------- /.github/workflows/resources/custom_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/.github/workflows/resources/custom_scraper.py -------------------------------------------------------------------------------- /.github/workflows/scripts/parse_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/.github/workflows/scripts/parse_form.py -------------------------------------------------------------------------------- /.github/workflows/scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/.github/workflows/scripts/requirements.txt -------------------------------------------------------------------------------- /.github/workflows/scripts/validate_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/.github/workflows/scripts/validate_form.py -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/.gitignore -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/.zenodo.json -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/README.md -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /hooks/post_gen_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/hooks/post_gen_project.py -------------------------------------------------------------------------------- /hooks/pre_gen_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/hooks/pre_gen_project.py -------------------------------------------------------------------------------- /local_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/local_extensions.py -------------------------------------------------------------------------------- /paper/assets/cdp_core_infrastructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/paper/assets/cdp_core_infrastructure.png -------------------------------------------------------------------------------- /paper/assets/event-page-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/paper/assets/event-page-screenshot.png -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/paper/paper.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/setup.cfg -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/.editorconfig -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/.github/dependabot.yml -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/build-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/build-main.yml -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/check-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/check-pr.yml -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/deploy-infra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/deploy-infra.yml -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/deploy-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/deploy-web.yml -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/event-gather-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/event-gather-pipeline.yml -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/event-index-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/event-index-pipeline.yml -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/process-special-event.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/process-special-event.yml -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/run-script.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/run-script.yml -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/.gitignore -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/Justfile -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/LICENSE -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/README.md -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/SETUP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/SETUP/README.md -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/admin-docs/adding-analytics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/admin-docs/adding-analytics.md -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/admin-docs/customizing-automated-pipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/admin-docs/customizing-automated-pipelines.md -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/admin-docs/manual-event-gather.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/admin-docs/manual-event-gather.md -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/admin-docs/resources/backfill-event-gather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/admin-docs/resources/backfill-event-gather.png -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/admin-docs/resources/cookiecutter-interrupt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/admin-docs/resources/cookiecutter-interrupt.png -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/admin-docs/resources/example-custom-event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/admin-docs/resources/example-custom-event.py -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/admin-docs/resources/special-event-gather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/admin-docs/resources/special-event-gather.png -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/admin-docs/resources/update-and-git-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/admin-docs/resources/update-and-git-status.png -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/admin-docs/resources/vs-code-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/admin-docs/resources/vs-code-status.png -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/admin-docs/resources/workflows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/admin-docs/resources/workflows.png -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/admin-docs/running-extra-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/admin-docs/running-extra-scripts.md -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/admin-docs/updating-to-new-cookiecutter-releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/admin-docs/updating-to-new-cookiecutter-releases.md -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/cookiecutter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/cookiecutter.yaml -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/infra/requirements.txt: -------------------------------------------------------------------------------- 1 | cdp-backend==4.1.3 -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/python/cdp_{{ cookiecutter.python_municipality_slug }}_backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/python/cdp_{{ cookiecutter.python_municipality_slug }}_backend/__init__.py -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/python/cdp_{{ cookiecutter.python_municipality_slug }}_backend/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/python/cdp_{{ cookiecutter.python_municipality_slug }}_backend/scraper.py -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/python/event-gather-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/python/event-gather-config.json -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/python/event-index-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/python/event-index-config.json -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/python/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/python/setup.cfg -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/python/setup.py -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/web/.gitignore -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/web/package.json -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/web/public/cdp-og-seo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/web/public/cdp-og-seo.png -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/web/public/cdp-twitter-seo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/web/public/cdp-twitter-seo.png -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/web/public/favicon.ico -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/web/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/web/public/index.html -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/web/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/web/public/manifest.json -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/web/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/web/public/robots.txt -------------------------------------------------------------------------------- /{{ cookiecutter.hosting_github_repo_name }}/web/src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CouncilDataProject/cookiecutter-cdp-deployment/HEAD/{{ cookiecutter.hosting_github_repo_name }}/web/src/index.jsx --------------------------------------------------------------------------------