├── .github └── workflows │ └── docs.yml ├── .gitignore ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── goals ├── back-end.md ├── index.md ├── media │ ├── apple-store.png │ ├── custom-vision-detect-dog.png │ ├── custom-vision-logo.png │ ├── custom-vision-project-settings.png │ ├── dog-pictures.png │ ├── google-play-badge.png │ ├── mutt-match-app-phone.png │ ├── power-apps-logo.png │ ├── power-automate-flow.png │ ├── power-automate-logo.png │ ├── prediction-key-url-root.png │ ├── prediction-key-url.png │ └── published-iteration.png ├── mobile-app.md └── train-model.md ├── mkdocs.yml ├── model-images ├── testing-images │ ├── american-staffordshire-terrier-10.jpg │ ├── american-staffordshire-terrier-9.jpg │ ├── australian-shepherd-10.jpg │ ├── australian-shepherd-9.jpg │ ├── buggle-10.jpg │ ├── buggle-9.jpg │ ├── german-wirehaired-pointer-10.jpg │ ├── german-wirehaired-pointer-9.jpg │ ├── shorkie-14.jpg │ └── shorkie-15.jpg └── training-images │ ├── american-staffordshire-terrier-1.jpg │ ├── american-staffordshire-terrier-2.jpg │ ├── american-staffordshire-terrier-3.jpg │ ├── american-staffordshire-terrier-4.jpg │ ├── american-staffordshire-terrier-5.jpg │ ├── american-staffordshire-terrier-6.jpg │ ├── american-staffordshire-terrier-7.jpg │ ├── american-staffordshire-terrier-8.jpg │ ├── australian-shepherd-1.jpg │ ├── australian-shepherd-2.jpg │ ├── australian-shepherd-3.jpg │ ├── australian-shepherd-4.jpg │ ├── australian-shepherd-5.jpg │ ├── australian-shepherd-6.jpg │ ├── australian-shepherd-7.jpg │ ├── australian-shepherd-8.jpg │ ├── buggle-1.jpg │ ├── buggle-2.jpg │ ├── buggle-3.jpg │ ├── buggle-4.jpg │ ├── buggle-5.jpg │ ├── buggle-6.jpg │ ├── buggle-7.jpg │ ├── buggle-8.jpg │ ├── german-wirehaired-pointer-1.jpg │ ├── german-wirehaired-pointer-2.jpg │ ├── german-wirehaired-pointer-3.jpg │ ├── german-wirehaired-pointer-4.jpg │ ├── german-wirehaired-pointer-5.jpg │ ├── german-wirehaired-pointer-6.jpg │ ├── german-wirehaired-pointer-7.jpg │ ├── german-wirehaired-pointer-8.jpg │ ├── golden-doodle-5.jfif │ ├── shorkie-1.jpg │ ├── shorkie-10.jpg │ ├── shorkie-11.jpg │ ├── shorkie-12.jpg │ ├── shorkie-13.jpg │ ├── shorkie-2.jpg │ ├── shorkie-3.jpg │ ├── shorkie-4.jpg │ ├── shorkie-5.jpg │ ├── shorkie-6.jpg │ ├── shorkie-7.jpg │ ├── shorkie-8.jpg │ └── shorkie-9.jpg ├── requirements.txt ├── theme ├── assets │ ├── images │ │ ├── 8_BIT.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ └── icon_garage_white.png │ └── stylesheets │ │ └── extra.css └── partials │ ├── footer.html │ └── tos.html └── validation ├── requirements.txt └── validate-model.py /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | __pycache__ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /goals/back-end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/goals/back-end.md -------------------------------------------------------------------------------- /goals/index.md: -------------------------------------------------------------------------------- 1 | {% 2 | include-markdown "../README.md" 3 | %} 4 | -------------------------------------------------------------------------------- /goals/media/apple-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/goals/media/apple-store.png -------------------------------------------------------------------------------- /goals/media/custom-vision-detect-dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/goals/media/custom-vision-detect-dog.png -------------------------------------------------------------------------------- /goals/media/custom-vision-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/goals/media/custom-vision-logo.png -------------------------------------------------------------------------------- /goals/media/custom-vision-project-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/goals/media/custom-vision-project-settings.png -------------------------------------------------------------------------------- /goals/media/dog-pictures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/goals/media/dog-pictures.png -------------------------------------------------------------------------------- /goals/media/google-play-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/goals/media/google-play-badge.png -------------------------------------------------------------------------------- /goals/media/mutt-match-app-phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/goals/media/mutt-match-app-phone.png -------------------------------------------------------------------------------- /goals/media/power-apps-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/goals/media/power-apps-logo.png -------------------------------------------------------------------------------- /goals/media/power-automate-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/goals/media/power-automate-flow.png -------------------------------------------------------------------------------- /goals/media/power-automate-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/goals/media/power-automate-logo.png -------------------------------------------------------------------------------- /goals/media/prediction-key-url-root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/goals/media/prediction-key-url-root.png -------------------------------------------------------------------------------- /goals/media/prediction-key-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/goals/media/prediction-key-url.png -------------------------------------------------------------------------------- /goals/media/published-iteration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/goals/media/published-iteration.png -------------------------------------------------------------------------------- /goals/mobile-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/goals/mobile-app.md -------------------------------------------------------------------------------- /goals/train-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/goals/train-model.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /model-images/testing-images/american-staffordshire-terrier-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/testing-images/american-staffordshire-terrier-10.jpg -------------------------------------------------------------------------------- /model-images/testing-images/american-staffordshire-terrier-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/testing-images/american-staffordshire-terrier-9.jpg -------------------------------------------------------------------------------- /model-images/testing-images/australian-shepherd-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/testing-images/australian-shepherd-10.jpg -------------------------------------------------------------------------------- /model-images/testing-images/australian-shepherd-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/testing-images/australian-shepherd-9.jpg -------------------------------------------------------------------------------- /model-images/testing-images/buggle-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/testing-images/buggle-10.jpg -------------------------------------------------------------------------------- /model-images/testing-images/buggle-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/testing-images/buggle-9.jpg -------------------------------------------------------------------------------- /model-images/testing-images/german-wirehaired-pointer-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/testing-images/german-wirehaired-pointer-10.jpg -------------------------------------------------------------------------------- /model-images/testing-images/german-wirehaired-pointer-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/testing-images/german-wirehaired-pointer-9.jpg -------------------------------------------------------------------------------- /model-images/testing-images/shorkie-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/testing-images/shorkie-14.jpg -------------------------------------------------------------------------------- /model-images/testing-images/shorkie-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/testing-images/shorkie-15.jpg -------------------------------------------------------------------------------- /model-images/training-images/american-staffordshire-terrier-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/american-staffordshire-terrier-1.jpg -------------------------------------------------------------------------------- /model-images/training-images/american-staffordshire-terrier-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/american-staffordshire-terrier-2.jpg -------------------------------------------------------------------------------- /model-images/training-images/american-staffordshire-terrier-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/american-staffordshire-terrier-3.jpg -------------------------------------------------------------------------------- /model-images/training-images/american-staffordshire-terrier-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/american-staffordshire-terrier-4.jpg -------------------------------------------------------------------------------- /model-images/training-images/american-staffordshire-terrier-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/american-staffordshire-terrier-5.jpg -------------------------------------------------------------------------------- /model-images/training-images/american-staffordshire-terrier-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/american-staffordshire-terrier-6.jpg -------------------------------------------------------------------------------- /model-images/training-images/american-staffordshire-terrier-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/american-staffordshire-terrier-7.jpg -------------------------------------------------------------------------------- /model-images/training-images/american-staffordshire-terrier-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/american-staffordshire-terrier-8.jpg -------------------------------------------------------------------------------- /model-images/training-images/australian-shepherd-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/australian-shepherd-1.jpg -------------------------------------------------------------------------------- /model-images/training-images/australian-shepherd-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/australian-shepherd-2.jpg -------------------------------------------------------------------------------- /model-images/training-images/australian-shepherd-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/australian-shepherd-3.jpg -------------------------------------------------------------------------------- /model-images/training-images/australian-shepherd-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/australian-shepherd-4.jpg -------------------------------------------------------------------------------- /model-images/training-images/australian-shepherd-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/australian-shepherd-5.jpg -------------------------------------------------------------------------------- /model-images/training-images/australian-shepherd-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/australian-shepherd-6.jpg -------------------------------------------------------------------------------- /model-images/training-images/australian-shepherd-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/australian-shepherd-7.jpg -------------------------------------------------------------------------------- /model-images/training-images/australian-shepherd-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/australian-shepherd-8.jpg -------------------------------------------------------------------------------- /model-images/training-images/buggle-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/buggle-1.jpg -------------------------------------------------------------------------------- /model-images/training-images/buggle-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/buggle-2.jpg -------------------------------------------------------------------------------- /model-images/training-images/buggle-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/buggle-3.jpg -------------------------------------------------------------------------------- /model-images/training-images/buggle-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/buggle-4.jpg -------------------------------------------------------------------------------- /model-images/training-images/buggle-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/buggle-5.jpg -------------------------------------------------------------------------------- /model-images/training-images/buggle-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/buggle-6.jpg -------------------------------------------------------------------------------- /model-images/training-images/buggle-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/buggle-7.jpg -------------------------------------------------------------------------------- /model-images/training-images/buggle-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/buggle-8.jpg -------------------------------------------------------------------------------- /model-images/training-images/german-wirehaired-pointer-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/german-wirehaired-pointer-1.jpg -------------------------------------------------------------------------------- /model-images/training-images/german-wirehaired-pointer-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/german-wirehaired-pointer-2.jpg -------------------------------------------------------------------------------- /model-images/training-images/german-wirehaired-pointer-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/german-wirehaired-pointer-3.jpg -------------------------------------------------------------------------------- /model-images/training-images/german-wirehaired-pointer-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/german-wirehaired-pointer-4.jpg -------------------------------------------------------------------------------- /model-images/training-images/german-wirehaired-pointer-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/german-wirehaired-pointer-5.jpg -------------------------------------------------------------------------------- /model-images/training-images/german-wirehaired-pointer-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/german-wirehaired-pointer-6.jpg -------------------------------------------------------------------------------- /model-images/training-images/german-wirehaired-pointer-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/german-wirehaired-pointer-7.jpg -------------------------------------------------------------------------------- /model-images/training-images/german-wirehaired-pointer-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/german-wirehaired-pointer-8.jpg -------------------------------------------------------------------------------- /model-images/training-images/golden-doodle-5.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/golden-doodle-5.jfif -------------------------------------------------------------------------------- /model-images/training-images/shorkie-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/shorkie-1.jpg -------------------------------------------------------------------------------- /model-images/training-images/shorkie-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/shorkie-10.jpg -------------------------------------------------------------------------------- /model-images/training-images/shorkie-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/shorkie-11.jpg -------------------------------------------------------------------------------- /model-images/training-images/shorkie-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/shorkie-12.jpg -------------------------------------------------------------------------------- /model-images/training-images/shorkie-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/shorkie-13.jpg -------------------------------------------------------------------------------- /model-images/training-images/shorkie-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/shorkie-2.jpg -------------------------------------------------------------------------------- /model-images/training-images/shorkie-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/shorkie-3.jpg -------------------------------------------------------------------------------- /model-images/training-images/shorkie-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/shorkie-4.jpg -------------------------------------------------------------------------------- /model-images/training-images/shorkie-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/shorkie-5.jpg -------------------------------------------------------------------------------- /model-images/training-images/shorkie-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/shorkie-6.jpg -------------------------------------------------------------------------------- /model-images/training-images/shorkie-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/shorkie-7.jpg -------------------------------------------------------------------------------- /model-images/training-images/shorkie-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/shorkie-8.jpg -------------------------------------------------------------------------------- /model-images/training-images/shorkie-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/model-images/training-images/shorkie-9.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/requirements.txt -------------------------------------------------------------------------------- /theme/assets/images/8_BIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/theme/assets/images/8_BIT.png -------------------------------------------------------------------------------- /theme/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/theme/assets/images/favicon.ico -------------------------------------------------------------------------------- /theme/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/theme/assets/images/favicon.png -------------------------------------------------------------------------------- /theme/assets/images/icon_garage_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/theme/assets/images/icon_garage_white.png -------------------------------------------------------------------------------- /theme/assets/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/theme/assets/stylesheets/extra.css -------------------------------------------------------------------------------- /theme/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/theme/partials/footer.html -------------------------------------------------------------------------------- /theme/partials/tos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/theme/partials/tos.html -------------------------------------------------------------------------------- /validation/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/validation/requirements.txt -------------------------------------------------------------------------------- /validation/validate-model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hack-workshop-power-apps/HEAD/validation/validate-model.py --------------------------------------------------------------------------------