forked from AZDevHub/azStorage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.tree
87 lines (87 loc) · 2.46 KB
/
app.tree
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
├── .env
├── .eslintrc.cjs
├── .github
│ └── workflows
│ └── azure-static-web-apps-calm-beach-0558af40f.yml
├── .gitignore
├── .prettierrc.json
├── .vscode
│ ├── extensions.json
│ ├── launch.json
│ ├── settings.json
│ └── tasks.json
├── api
│ ├── .eslintignore
│ ├── .eslintrc
│ ├── .funcignore
│ ├── .gitignore
│ ├── .prettierrc
│ ├── .vscode
│ │ ├── extensions.json
│ │ ├── launch.json
│ │ ├── settings.json
│ │ └── tasks.json
│ ├── host.json
│ ├── package.json
│ ├── README.md
│ ├── src
│ │ ├── functions
│ │ │ ├── list.ts
│ │ │ ├── sas.ts
│ │ │ ├── status.ts
│ │ │ └── upload.ts
│ │ └── lib
│ │ └── azure-storage.ts
│ ├── test-file.txt
│ └── tsconfig.json
├── app.tree
├── babel.config.js
├── clean.sh
├── cypress.config.js
├── favicon.ico
├── index.html
├── jest.config.js
├── jsconfig.json
├── package.json
├── README.md
├── src
│ ├── App.vue
│ ├── assets
│ │ ├── az-logo.png
│ │ ├── azure.svg
│ │ ├── styles.css
│ │ ├── vite.svg
│ │ └── vue.svg
│ ├── components
│ │ ├── button-footer.vue
│ │ ├── card-content.vue
│ │ ├── footer-bar.vue
│ │ ├── header-bar.vue
│ │ ├── icons
│ │ │ ├── IconCommunity.vue
│ │ │ ├── IconDocumentation.vue
│ │ │ ├── IconEcosystem.vue
│ │ │ ├── IconSupport.vue
│ │ │ └── IconTooling.vue
│ │ ├── list-header.vue
│ │ ├── modal.vue
│ │ ├── nav-bar.vue
│ │ ├── show-popup.vue
│ │ └── WelcomeItem.vue
│ ├── main.js
│ ├── router
│ │ └── index.js
│ ├── routes
│ │ ├── FileUpload.vue
│ │ ├── GetAbout.vue
│ │ ├── GetSas.vue
│ │ ├── GetStatus.vue
│ │ ├── GoHome.vue
│ │ ├── ListFiles.vue
│ │ └── NotFound.vue
│ └── services
│ └── ApiServices.js
├── staticwebapp.config.json
├── test.js
├── vite.config.js
└── vitest.config.js