├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── README.md ├── api ├── .funcignore ├── .gitignore ├── host.json ├── package-lock.json ├── package.json ├── proxies.json └── tasks │ ├── function.json │ ├── index.js │ └── sample.dat ├── docs ├── configuring-database.md ├── exploring-code.md ├── getting-started.md ├── images │ ├── Azure.png │ ├── aswa-upload-settings.png │ ├── cosmos-collection-name.png │ ├── cosmos-copy-connection-string.png │ ├── cosmos-create-database.png │ ├── cosmos-create-server.png │ ├── cosmos-database-name.png │ ├── cosmos-server-name.png │ ├── cosmos-server-region.png │ ├── cosmos-server-rg.png │ ├── cosmos-server-type.png │ ├── create-static-webapp.png │ ├── function-auth.png │ ├── function-name.png │ ├── functions-template.png │ ├── functions-tool.png │ └── live-server-start.png ├── local-dev.md └── troubleshooting-and-resources.md └── public ├── index.css ├── index.html └── local-index.js /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /api/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/api/.funcignore -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/api/.gitignore -------------------------------------------------------------------------------- /api/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/api/host.json -------------------------------------------------------------------------------- /api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/api/package-lock.json -------------------------------------------------------------------------------- /api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/api/package.json -------------------------------------------------------------------------------- /api/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/api/proxies.json -------------------------------------------------------------------------------- /api/tasks/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/api/tasks/function.json -------------------------------------------------------------------------------- /api/tasks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/api/tasks/index.js -------------------------------------------------------------------------------- /api/tasks/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } -------------------------------------------------------------------------------- /docs/configuring-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/configuring-database.md -------------------------------------------------------------------------------- /docs/exploring-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/exploring-code.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/images/Azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/images/Azure.png -------------------------------------------------------------------------------- /docs/images/aswa-upload-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/images/aswa-upload-settings.png -------------------------------------------------------------------------------- /docs/images/cosmos-collection-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/images/cosmos-collection-name.png -------------------------------------------------------------------------------- /docs/images/cosmos-copy-connection-string.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/images/cosmos-copy-connection-string.png -------------------------------------------------------------------------------- /docs/images/cosmos-create-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/images/cosmos-create-database.png -------------------------------------------------------------------------------- /docs/images/cosmos-create-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/images/cosmos-create-server.png -------------------------------------------------------------------------------- /docs/images/cosmos-database-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/images/cosmos-database-name.png -------------------------------------------------------------------------------- /docs/images/cosmos-server-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/images/cosmos-server-name.png -------------------------------------------------------------------------------- /docs/images/cosmos-server-region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/images/cosmos-server-region.png -------------------------------------------------------------------------------- /docs/images/cosmos-server-rg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/images/cosmos-server-rg.png -------------------------------------------------------------------------------- /docs/images/cosmos-server-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/images/cosmos-server-type.png -------------------------------------------------------------------------------- /docs/images/create-static-webapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/images/create-static-webapp.png -------------------------------------------------------------------------------- /docs/images/function-auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/images/function-auth.png -------------------------------------------------------------------------------- /docs/images/function-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/images/function-name.png -------------------------------------------------------------------------------- /docs/images/functions-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/images/functions-template.png -------------------------------------------------------------------------------- /docs/images/functions-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/images/functions-tool.png -------------------------------------------------------------------------------- /docs/images/live-server-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/images/live-server-start.png -------------------------------------------------------------------------------- /docs/local-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/local-dev.md -------------------------------------------------------------------------------- /docs/troubleshooting-and-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/docs/troubleshooting-and-resources.md -------------------------------------------------------------------------------- /public/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/public/index.css -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/public/index.html -------------------------------------------------------------------------------- /public/local-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekTrainer/aswa-student-starter-kit/HEAD/public/local-index.js --------------------------------------------------------------------------------