bomiot 0.2.2__tar.gz → 0.2.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (162) hide show
  1. {bomiot-0.2.2 → bomiot-0.2.3}/PKG-INFO +1 -1
  2. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/server/urls.py +10 -1
  3. bomiot-0.2.3/bomiot/templates/.editorconfig +9 -0
  4. bomiot-0.2.3/bomiot/templates/.eslintignore +7 -0
  5. bomiot-0.2.3/bomiot/templates/.eslintrc.cjs +65 -0
  6. bomiot-0.2.3/bomiot/templates/.gitignore +33 -0
  7. bomiot-0.2.3/bomiot/templates/.npmrc +5 -0
  8. bomiot-0.2.3/bomiot/templates/.vscode/extensions.json +15 -0
  9. bomiot-0.2.3/bomiot/templates/.vscode/settings.json +15 -0
  10. bomiot-0.2.3/bomiot/templates/README.md +41 -0
  11. bomiot-0.2.3/bomiot/templates/index.html +21 -0
  12. bomiot-0.2.3/bomiot/templates/jsconfig.json +39 -0
  13. bomiot-0.2.3/bomiot/templates/package.json +40 -0
  14. bomiot-0.2.3/bomiot/templates/postcss.config.cjs +27 -0
  15. bomiot-0.2.3/bomiot/templates/public/favicon.ico +0 -0
  16. bomiot-0.2.3/bomiot/templates/public/icons/favicon-128x128.png +0 -0
  17. bomiot-0.2.3/bomiot/templates/public/icons/favicon-16x16.png +0 -0
  18. bomiot-0.2.3/bomiot/templates/public/icons/favicon-32x32.png +0 -0
  19. bomiot-0.2.3/bomiot/templates/public/icons/favicon-96x96.png +0 -0
  20. bomiot-0.2.3/bomiot/templates/quasar.config.js +218 -0
  21. bomiot-0.2.3/bomiot/templates/src/App.vue +9 -0
  22. bomiot-0.2.3/bomiot/templates/src/assets/quasar-logo-vertical.svg +15 -0
  23. bomiot-0.2.3/bomiot/templates/src/boot/.gitkeep +0 -0
  24. bomiot-0.2.3/bomiot/templates/src/boot/axios.js +24 -0
  25. bomiot-0.2.3/bomiot/templates/src/boot/i18n.js +14 -0
  26. bomiot-0.2.3/bomiot/templates/src/components/EssentialLink.vue +48 -0
  27. bomiot-0.2.3/bomiot/templates/src/css/app.scss +1 -0
  28. bomiot-0.2.3/bomiot/templates/src/css/quasar.variables.scss +25 -0
  29. bomiot-0.2.3/bomiot/templates/src/i18n/en-US/index.js +7 -0
  30. bomiot-0.2.3/bomiot/templates/src/i18n/index.js +5 -0
  31. bomiot-0.2.3/bomiot/templates/src/layouts/MainLayout.vue +106 -0
  32. bomiot-0.2.3/bomiot/templates/src/pages/ErrorNotFound.vue +29 -0
  33. bomiot-0.2.3/bomiot/templates/src/pages/IndexPage.vue +15 -0
  34. bomiot-0.2.3/bomiot/templates/src/router/index.js +30 -0
  35. bomiot-0.2.3/bomiot/templates/src/router/routes.js +18 -0
  36. bomiot-0.2.3/bomiot/templates/src/stores/example-store.js +15 -0
  37. bomiot-0.2.3/bomiot/templates/src/stores/index.js +20 -0
  38. bomiot-0.2.3/bomiot/templates/src/stores/store-flag.d.ts +13 -0
  39. bomiot-0.2.3/bomiot/templates/yarn.lock +3468 -0
  40. {bomiot-0.2.2 → bomiot-0.2.3}/pyproject.toml +2 -1
  41. {bomiot-0.2.2 → bomiot-0.2.3}/LICENSE +0 -0
  42. {bomiot-0.2.2 → bomiot-0.2.3}/README.md +0 -0
  43. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/__init__.py +0 -0
  44. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/__version__.py +0 -0
  45. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/cmd/__init__.py +0 -0
  46. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/cmd/create.py +0 -0
  47. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/cmd/deploy.py +0 -0
  48. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/cmd/file/.gitignore +0 -0
  49. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/cmd/file/LICENSE +0 -0
  50. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/cmd/file/README.md +0 -0
  51. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/cmd/file/__init__.py +0 -0
  52. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/cmd/file/__version__.py +0 -0
  53. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/cmd/file/bomiotconf.py +0 -0
  54. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/cmd/file/config.ini +0 -0
  55. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/cmd/file/pyproject.toml +0 -0
  56. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/cmd/file/setup.ini +0 -0
  57. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/cmd/file/uwsgi.ini +0 -0
  58. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/cmd/initadmin.py +0 -0
  59. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/cmd/plugins.py +0 -0
  60. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/cmd/project.py +0 -0
  61. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/.gitignore +0 -0
  62. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/__init__.py +0 -0
  63. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/__init__.py +0 -0
  64. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/admin.py +0 -0
  65. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/apps.py +0 -0
  66. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/auth.py +0 -0
  67. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/field.py +0 -0
  68. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/filter.py +0 -0
  69. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/jwt_auth.py +0 -0
  70. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/migrations/0001_initial.py +0 -0
  71. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/migrations/__init__.py +0 -0
  72. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/models.py +0 -0
  73. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/my_exceptions.py +0 -0
  74. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/permission.py +0 -0
  75. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/serializers.py +0 -0
  76. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/favicon.ico +0 -0
  77. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/index.html +0 -0
  78. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/app.e8b12703.css +0 -0
  79. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/app.e8b12703.css.map +0 -0
  80. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-10b2edc2.79f68610.css +0 -0
  81. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-10b2edc2.79f68610.css.map +0 -0
  82. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-12e7e66d.f5a4d5cd.css +0 -0
  83. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-12e7e66d.f5a4d5cd.css.map +0 -0
  84. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-2ab4c347.a74091e8.css +0 -0
  85. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-2ab4c347.a74091e8.css.map +0 -0
  86. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-39423506.309b39ca.css +0 -0
  87. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-39423506.309b39ca.css.map +0 -0
  88. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-3a6102b3.0fe5e5eb.css +0 -0
  89. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-3a6102b3.0fe5e5eb.css.map +0 -0
  90. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-4a7237a2.0d5cdefa.css +0 -0
  91. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-4a7237a2.0d5cdefa.css.map +0 -0
  92. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-582dc9b0.94c01b9b.css +0 -0
  93. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-582dc9b0.94c01b9b.css.map +0 -0
  94. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-5cd9d886.d235bd2d.css +0 -0
  95. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-5cd9d886.d235bd2d.css.map +0 -0
  96. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-736ea204.31923c28.css +0 -0
  97. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-736ea204.31923c28.css.map +0 -0
  98. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-74cc1e94.d031c5e4.css +0 -0
  99. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-74cc1e94.d031c5e4.css.map +0 -0
  100. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-vendors.2c7ad440.css +0 -0
  101. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/css/chunk-vendors.2c7ad440.css.map +0 -0
  102. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/fonts/element-icons.535877f5.woff +0 -0
  103. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/fonts/element-icons.732389de.ttf +0 -0
  104. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/fonts/fontawesome-webfont.674f50d2.eot +0 -0
  105. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/fonts/fontawesome-webfont.af7ae505.woff2 +0 -0
  106. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/fonts/fontawesome-webfont.b06871f2.ttf +0 -0
  107. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/fonts/fontawesome-webfont.fee66e71.woff +0 -0
  108. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/img/fontawesome-webfont.912ec66d.svg +0 -0
  109. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/img/loading.864753ef.svg +0 -0
  110. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/img/logo.0aa9679a.png +0 -0
  111. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/app.c76ee343.js +0 -0
  112. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/app.c76ee343.js.map +0 -0
  113. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-10b2edc2.6db9c9b5.js +0 -0
  114. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-10b2edc2.6db9c9b5.js.map +0 -0
  115. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-12e7e66d.fd5050d7.js +0 -0
  116. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-12e7e66d.fd5050d7.js.map +0 -0
  117. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-193b04f2.bad183bb.js +0 -0
  118. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-193b04f2.bad183bb.js.map +0 -0
  119. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-2ab4c347.d7e45ee9.js +0 -0
  120. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-2ab4c347.d7e45ee9.js.map +0 -0
  121. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-2d0a3191.e91bf98e.js +0 -0
  122. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-2d0a3191.e91bf98e.js.map +0 -0
  123. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-2d0e450e.6a3ef722.js +0 -0
  124. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-2d0e450e.6a3ef722.js.map +0 -0
  125. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-39423506.69b4a9a5.js +0 -0
  126. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-39423506.69b4a9a5.js.map +0 -0
  127. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-3a6102b3.3a070cd7.js +0 -0
  128. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-3a6102b3.3a070cd7.js.map +0 -0
  129. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-4a7237a2.fee914bc.js +0 -0
  130. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-4a7237a2.fee914bc.js.map +0 -0
  131. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-55d43787.c0337460.js +0 -0
  132. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-55d43787.c0337460.js.map +0 -0
  133. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-55d4e541.dfd42f49.js +0 -0
  134. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-55d4e541.dfd42f49.js.map +0 -0
  135. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-582dc9b0.1b37a15f.js +0 -0
  136. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-582dc9b0.1b37a15f.js.map +0 -0
  137. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-5cd9d886.7258f82f.js +0 -0
  138. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-5cd9d886.7258f82f.js.map +0 -0
  139. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-736ea204.b3f615b3.js +0 -0
  140. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-736ea204.b3f615b3.js.map +0 -0
  141. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-74cc1e94.e11b24e1.js +0 -0
  142. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-74cc1e94.e11b24e1.js.map +0 -0
  143. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-8cbdea46.8634a700.js +0 -0
  144. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-8cbdea46.8634a700.js.map +0 -0
  145. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-vendors.4e2067da.js +0 -0
  146. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/templates/static/js/chunk-vendors.4e2067da.js.map +0 -0
  147. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/test.py +0 -0
  148. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/tests.py +0 -0
  149. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/throttle.py +0 -0
  150. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/urls.py +0 -0
  151. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/utils.py +0 -0
  152. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/views.py +0 -0
  153. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/core/websocket.py +0 -0
  154. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/manage.py +0 -0
  155. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/server/__init__.py +0 -0
  156. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/server/asgi.py +0 -0
  157. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/server/pkgcheck.py +0 -0
  158. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/server/settings.py +0 -0
  159. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/server/views.py +0 -0
  160. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/server/wsgi.py +0 -0
  161. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/server/static/__init__.py +0 -0
  162. {bomiot-0.2.2 → bomiot-0.2.3}/bomiot/settings.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bomiot
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: One workspace for you to do you python app
5
5
  Home-page: https://github.com/Bomiot/Bomiot
6
6
  Keywords: Bomiot,bomiot,GreaterWMS
@@ -1,5 +1,6 @@
1
1
  import os
2
2
  from os import getcwd
3
+ from os.path import join
3
4
 
4
5
  from django.contrib import admin
5
6
  from django.urls import path, include, re_path
@@ -28,6 +29,8 @@ urlpatterns = [
28
29
  path('', include('bomiot.server.core.urls')),
29
30
  ]
30
31
 
32
+
33
+
31
34
  urlpatterns += [
32
35
  path('favicon.ico', views.favicon, name='favicon'),
33
36
  re_path('^css/.*$', views.statics, name='css'),
@@ -41,7 +44,7 @@ urlpatterns += [
41
44
  ]
42
45
 
43
46
  CONFIG = ConfigParser()
44
- CONFIG.read(os.path.join(os.getcwd(), 'setup.ini'), encoding='utf-8')
47
+ CONFIG.read(join(os.getcwd(), 'setup.ini'), encoding='utf-8')
45
48
  project_name = CONFIG.get('project', 'name', fallback='bomiot')
46
49
 
47
50
 
@@ -66,6 +69,9 @@ for module in [pkg.key for pkg in pkg_resources.working_set]:
66
69
  for url in find_urls:
67
70
  if importlib.util.find_spec(f'{project_name}.{url}.urls') is not None:
68
71
  urlpatterns += [
72
+ path('', TemplateView.as_view(
73
+ template_name=join(join(join(join(list_project_path, 'templates'), 'dist'), 'spa'),
74
+ 'index.html'))),
69
75
  path(f'{project_name}/{url}/', include(f'{project_name}.{url}.urls')),
70
76
  ]
71
77
  else:
@@ -97,6 +103,9 @@ for module_name in current_path:
97
103
  for url in find_urls:
98
104
  if importlib.util.find_spec(f'{project_name}.{url}.urls') is not None:
99
105
  urlpatterns += [
106
+ path('', TemplateView.as_view(
107
+ template_name=join(join(join(join(project_path, 'templates'), 'dist'), 'spa'),
108
+ 'index.html'))),
100
109
  path(f'{project_name}/{url}/', include(f'{project_name}.{url}.urls')),
101
110
  ]
102
111
  else:
@@ -0,0 +1,9 @@
1
+ root = true
2
+
3
+ [*]
4
+ charset = utf-8
5
+ indent_style = space
6
+ indent_size = 2
7
+ end_of_line = lf
8
+ insert_final_newline = true
9
+ trim_trailing_whitespace = true
@@ -0,0 +1,7 @@
1
+ /dist
2
+ /src-capacitor
3
+ /src-cordova
4
+ /.quasar
5
+ /node_modules
6
+ .eslintrc.cjs
7
+ /quasar.config.*.temporary.compiled*
@@ -0,0 +1,65 @@
1
+ module.exports = {
2
+ // https://eslint.org/docs/user-guide/configuring#configuration-cascading-and-hierarchy
3
+ // This option interrupts the configuration hierarchy at this file
4
+ // Remove this if you have an higher level ESLint config file (it usually happens into a monorepos)
5
+ root: true,
6
+
7
+ parserOptions: {
8
+ ecmaVersion: 2021, // Allows for the parsing of modern ECMAScript features
9
+ },
10
+
11
+ env: {
12
+ node: true,
13
+ browser: true
14
+ },
15
+
16
+ // Rules order is important, please avoid shuffling them
17
+ extends: [
18
+ // Base ESLint recommended rules
19
+ // 'eslint:recommended',
20
+
21
+ // Uncomment any of the lines below to choose desired strictness,
22
+ // but leave only one uncommented!
23
+ // See https://eslint.vuejs.org/rules/#available-rules
24
+ 'plugin:vue/vue3-essential', // Priority A: Essential (Error Prevention)
25
+ // 'plugin:vue/vue3-strongly-recommended', // Priority B: Strongly Recommended (Improving Readability)
26
+ // 'plugin:vue/vue3-recommended', // Priority C: Recommended (Minimizing Arbitrary Choices and Cognitive Overhead)
27
+
28
+ // https://github.com/prettier/eslint-config-prettier#installation
29
+ // usage with Prettier, provided by 'eslint-config-prettier'.
30
+ 'prettier'
31
+ ],
32
+
33
+ plugins: [
34
+ // https://eslint.vuejs.org/user-guide/#why-doesn-t-it-work-on-vue-files
35
+ // required to lint *.vue files
36
+ 'vue',
37
+
38
+ // https://github.com/typescript-eslint/typescript-eslint/issues/389#issuecomment-509292674
39
+ // Prettier has not been included as plugin to avoid performance impact
40
+ // add it as an extension for your IDE
41
+
42
+ ],
43
+
44
+ globals: {
45
+ ga: 'readonly', // Google Analytics
46
+ cordova: 'readonly',
47
+ __statics: 'readonly',
48
+ __QUASAR_SSR__: 'readonly',
49
+ __QUASAR_SSR_SERVER__: 'readonly',
50
+ __QUASAR_SSR_CLIENT__: 'readonly',
51
+ __QUASAR_SSR_PWA__: 'readonly',
52
+ process: 'readonly',
53
+ Capacitor: 'readonly',
54
+ chrome: 'readonly'
55
+ },
56
+
57
+ // add your custom rules here
58
+ rules: {
59
+
60
+ 'prefer-promise-reject-errors': 'off',
61
+
62
+ // allow debugger during development only
63
+ 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
64
+ }
65
+ }
@@ -0,0 +1,33 @@
1
+ .DS_Store
2
+ .thumbs.db
3
+ node_modules
4
+
5
+ # Quasar core related directories
6
+ .quasar
7
+ /dist
8
+ /quasar.config.*.temporary.compiled*
9
+
10
+ # Cordova related directories and files
11
+ /src-cordova/node_modules
12
+ /src-cordova/platforms
13
+ /src-cordova/plugins
14
+ /src-cordova/www
15
+
16
+ # Capacitor related directories and files
17
+ /src-capacitor/www
18
+ /src-capacitor/node_modules
19
+
20
+ # Log files
21
+ npm-debug.log*
22
+ yarn-debug.log*
23
+ yarn-error.log*
24
+
25
+ # Editor directories and files
26
+ .idea
27
+ *.suo
28
+ *.ntvs*
29
+ *.njsproj
30
+ *.sln
31
+
32
+ # local .env files
33
+ .env.local*
@@ -0,0 +1,5 @@
1
+ # pnpm-related options
2
+ shamefully-hoist=true
3
+ strict-peer-dependencies=false
4
+ # to get the latest compatible packages when creating the project https://github.com/pnpm/pnpm/issues/6463
5
+ resolution-mode=highest
@@ -0,0 +1,15 @@
1
+ {
2
+ "recommendations": [
3
+ "dbaeumer.vscode-eslint",
4
+ "esbenp.prettier-vscode",
5
+ "editorconfig.editorconfig",
6
+ "vue.volar",
7
+ "wayou.vscode-todo-highlight"
8
+ ],
9
+ "unwantedRecommendations": [
10
+ "octref.vetur",
11
+ "hookyqr.beautify",
12
+ "dbaeumer.jshint",
13
+ "ms-vscode.vscode-typescript-tslint-plugin"
14
+ ]
15
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "editor.bracketPairColorization.enabled": true,
3
+ "editor.guides.bracketPairs": true,
4
+ "editor.formatOnSave": true,
5
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
6
+ "editor.codeActionsOnSave": [
7
+ "source.fixAll.eslint"
8
+ ],
9
+ "eslint.validate": [
10
+ "javascript",
11
+ "javascriptreact",
12
+ "typescript",
13
+ "vue"
14
+ ]
15
+ }
@@ -0,0 +1,41 @@
1
+ # bomiot app (templates)
2
+
3
+ A bomiot app
4
+
5
+ ## Install the dependencies
6
+ ```bash
7
+ yarn
8
+ # or
9
+ npm install
10
+ ```
11
+
12
+ ### Start the app in development mode (hot-code reloading, error reporting, etc.)
13
+ ```bash
14
+ quasar dev
15
+ ```
16
+
17
+
18
+ ### Lint the files
19
+ ```bash
20
+ yarn lint
21
+ # or
22
+ npm run lint
23
+ ```
24
+
25
+
26
+ ### Format the files
27
+ ```bash
28
+ yarn format
29
+ # or
30
+ npm run format
31
+ ```
32
+
33
+
34
+
35
+ ### Build the app for production
36
+ ```bash
37
+ quasar build
38
+ ```
39
+
40
+ ### Customize the configuration
41
+ See [Configuring quasar.config.js](https://v2.quasar.dev/quasar-cli-vite/quasar-config-js).
@@ -0,0 +1,21 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title><%= productName %></title>
5
+
6
+ <meta charset="utf-8">
7
+ <meta name="description" content="<%= productDescription %>">
8
+ <meta name="format-detection" content="telephone=no">
9
+ <meta name="msapplication-tap-highlight" content="no">
10
+ <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>">
11
+
12
+ <link rel="icon" type="image/png" sizes="128x128" href="icons/favicon-128x128.png">
13
+ <link rel="icon" type="image/png" sizes="96x96" href="icons/favicon-96x96.png">
14
+ <link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png">
15
+ <link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png">
16
+ <link rel="icon" type="image/ico" href="favicon.ico">
17
+ </head>
18
+ <body>
19
+ <!-- quasar:entry-point -->
20
+ </body>
21
+ </html>
@@ -0,0 +1,39 @@
1
+ {
2
+ "compilerOptions": {
3
+ "baseUrl": ".",
4
+ "paths": {
5
+ "src/*": [
6
+ "src/*"
7
+ ],
8
+ "app/*": [
9
+ "*"
10
+ ],
11
+ "components/*": [
12
+ "src/components/*"
13
+ ],
14
+ "layouts/*": [
15
+ "src/layouts/*"
16
+ ],
17
+ "pages/*": [
18
+ "src/pages/*"
19
+ ],
20
+ "assets/*": [
21
+ "src/assets/*"
22
+ ],
23
+ "boot/*": [
24
+ "src/boot/*"
25
+ ],
26
+ "stores/*": [
27
+ "src/stores/*"
28
+ ],
29
+ "vue$": [
30
+ "node_modules/vue/dist/vue.runtime.esm-bundler.js"
31
+ ]
32
+ }
33
+ },
34
+ "exclude": [
35
+ "dist",
36
+ ".quasar",
37
+ "node_modules"
38
+ ]
39
+ }
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "templates",
3
+ "version": "0.0.1",
4
+ "description": "A bomiot app",
5
+ "productName": "bomiot app",
6
+ "author": "GreaterWMS <38828089+Singosgu@users.noreply.github.com>",
7
+ "private": true,
8
+ "scripts": {
9
+ "lint": "eslint --ext .js,.vue ./",
10
+ "format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore",
11
+ "test": "echo \"No test specified\" && exit 0",
12
+ "dev": "quasar dev",
13
+ "build": "quasar build"
14
+ },
15
+ "dependencies": {
16
+ "axios": "^1.2.1",
17
+ "vue-i18n": "^9.0.0",
18
+ "pinia": "^2.0.11",
19
+ "@quasar/extras": "^1.16.4",
20
+ "quasar": "^2.16.0",
21
+ "vue": "^3.4.18",
22
+ "vue-router": "^4.0.12"
23
+ },
24
+ "devDependencies": {
25
+ "eslint": "^8.57.0",
26
+ "eslint-plugin-vue": "^9.0.0",
27
+ "vite-plugin-checker": "^0.8.0",
28
+ "eslint-config-prettier": "^8.1.0",
29
+ "prettier": "^2.5.1",
30
+ "@intlify/vite-plugin-vue-i18n": "^3.3.1",
31
+ "@quasar/app-vite": "^1.9.0",
32
+ "autoprefixer": "^10.4.2",
33
+ "postcss": "^8.4.14"
34
+ },
35
+ "engines": {
36
+ "node": "^20 || ^18 || ^16",
37
+ "npm": ">= 6.13.4",
38
+ "yarn": ">= 1.21.1"
39
+ }
40
+ }
@@ -0,0 +1,27 @@
1
+ /* eslint-disable */
2
+ // https://github.com/michael-ciniawsky/postcss-load-config
3
+
4
+ module.exports = {
5
+ plugins: [
6
+ // https://github.com/postcss/autoprefixer
7
+ require('autoprefixer')({
8
+ overrideBrowserslist: [
9
+ 'last 4 Chrome versions',
10
+ 'last 4 Firefox versions',
11
+ 'last 4 Edge versions',
12
+ 'last 4 Safari versions',
13
+ 'last 4 Android versions',
14
+ 'last 4 ChromeAndroid versions',
15
+ 'last 4 FirefoxAndroid versions',
16
+ 'last 4 iOS versions'
17
+ ]
18
+ })
19
+
20
+ // https://github.com/elchininet/postcss-rtlcss
21
+ // If you want to support RTL css, then
22
+ // 1. yarn/npm install postcss-rtlcss
23
+ // 2. optionally set quasar.config.js > framework > lang to an RTL language
24
+ // 3. uncomment the following line:
25
+ // require('postcss-rtlcss')
26
+ ]
27
+ }
@@ -0,0 +1,218 @@
1
+ /* eslint-env node */
2
+
3
+ /*
4
+ * This file runs in a Node context (it's NOT transpiled by Babel), so use only
5
+ * the ES6 features that are supported by your Node version. https://node.green/
6
+ */
7
+
8
+ // Configuration for your app
9
+ // https://v2.quasar.dev/quasar-cli-vite/quasar-config-js
10
+
11
+
12
+ const { configure } = require('quasar/wrappers');
13
+ const path = require('path');
14
+
15
+ module.exports = configure(function (/* ctx */) {
16
+ return {
17
+ // https://v2.quasar.dev/quasar-cli-vite/prefetch-feature
18
+ // preFetch: true,
19
+
20
+ // app boot file (/src/boot)
21
+ // --> boot files are part of "main.js"
22
+ // https://v2.quasar.dev/quasar-cli-vite/boot-files
23
+ boot: [
24
+ 'i18n',
25
+ 'axios',
26
+ ],
27
+
28
+ // https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#css
29
+ css: [
30
+ 'app.scss'
31
+ ],
32
+
33
+ // https://github.com/quasarframework/quasar/tree/dev/extras
34
+ extras: [
35
+ // 'ionicons-v4',
36
+ // 'mdi-v7',
37
+ // 'fontawesome-v6',
38
+ // 'eva-icons',
39
+ // 'themify',
40
+ // 'line-awesome',
41
+ // 'roboto-font-latin-ext', // this or either 'roboto-font', NEVER both!
42
+
43
+ 'roboto-font', // optional, you are not bound to it
44
+ 'material-icons', // optional, you are not bound to it
45
+ ],
46
+
47
+ // Full list of options: https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#build
48
+ build: {
49
+ target: {
50
+ browser: [ 'es2019', 'edge88', 'firefox78', 'chrome87', 'safari13.1' ],
51
+ node: 'node20'
52
+ },
53
+
54
+ vueRouterMode: 'hash', // available values: 'hash', 'history'
55
+ // vueRouterBase,
56
+ // vueDevtools,
57
+ // vueOptionsAPI: false,
58
+
59
+ // rebuildCache: true, // rebuilds Vite/linter/etc cache on startup
60
+
61
+ // publicPath: '/',
62
+ // analyze: true,
63
+ // env: {},
64
+ // rawDefine: {}
65
+ // ignorePublicFolder: true,
66
+ // minify: false,
67
+ // polyfillModulePreload: true,
68
+ // distDir
69
+
70
+ // extendViteConf (viteConf) {},
71
+ // viteVuePluginOptions: {},
72
+
73
+ vitePlugins: [
74
+ ['@intlify/vite-plugin-vue-i18n', {
75
+ // if you want to use Vue I18n Legacy API, you need to set `compositionOnly: false`
76
+ // compositionOnly: false,
77
+
78
+ // if you want to use named tokens in your Vue I18n messages, such as 'Hello {name}',
79
+ // you need to set `runtimeOnly: false`
80
+ // runtimeOnly: false,
81
+
82
+ // you need to set i18n resource including paths !
83
+ include: path.resolve(__dirname, './src/i18n/**')
84
+ }],
85
+ ['vite-plugin-checker', {
86
+ eslint: {
87
+ lintCommand: 'eslint "./**/*.{js,mjs,cjs,vue}"'
88
+ }
89
+ }, { server: false }]
90
+ ]
91
+ },
92
+
93
+ // Full list of options: https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#devServer
94
+ devServer: {
95
+ // https: true
96
+ open: true // opens browser window automatically
97
+ },
98
+
99
+ // https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#framework
100
+ framework: {
101
+ config: {},
102
+
103
+ // iconSet: 'material-icons', // Quasar icon set
104
+ // lang: 'en-US', // Quasar language pack
105
+
106
+ // For special cases outside of where the auto-import strategy can have an impact
107
+ // (like functional components as one of the examples),
108
+ // you can manually specify Quasar components/directives to be available everywhere:
109
+ //
110
+ // components: [],
111
+ // directives: [],
112
+
113
+ // Quasar plugins
114
+ plugins: []
115
+ },
116
+
117
+ // animations: 'all', // --- includes all animations
118
+ // https://v2.quasar.dev/options/animations
119
+ animations: [],
120
+
121
+ // https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#property-sourcefiles
122
+ // sourceFiles: {
123
+ // rootComponent: 'src/App.vue',
124
+ // router: 'src/router/index',
125
+ // store: 'src/store/index',
126
+ // registerServiceWorker: 'src-pwa/register-service-worker',
127
+ // serviceWorker: 'src-pwa/custom-service-worker',
128
+ // pwaManifestFile: 'src-pwa/manifest.json',
129
+ // electronMain: 'src-electron/electron-main',
130
+ // electronPreload: 'src-electron/electron-preload'
131
+ // },
132
+
133
+ // https://v2.quasar.dev/quasar-cli-vite/developing-ssr/configuring-ssr
134
+ ssr: {
135
+ // ssrPwaHtmlFilename: 'offline.html', // do NOT use index.html as name!
136
+ // will mess up SSR
137
+
138
+ // extendSSRWebserverConf (esbuildConf) {},
139
+ // extendPackageJson (json) {},
140
+
141
+ pwa: false,
142
+
143
+ // manualStoreHydration: true,
144
+ // manualPostHydrationTrigger: true,
145
+
146
+ prodPort: 3000, // The default port that the production server should use
147
+ // (gets superseded if process.env.PORT is specified at runtime)
148
+
149
+ middlewares: [
150
+ 'render' // keep this as last one
151
+ ]
152
+ },
153
+
154
+ // https://v2.quasar.dev/quasar-cli-vite/developing-pwa/configuring-pwa
155
+ pwa: {
156
+ workboxMode: 'generateSW', // or 'injectManifest'
157
+ injectPwaMetaTags: true,
158
+ swFilename: 'sw.js',
159
+ manifestFilename: 'manifest.json',
160
+ useCredentialsForManifestTag: false,
161
+ // useFilenameHashes: true,
162
+ // extendGenerateSWOptions (cfg) {}
163
+ // extendInjectManifestOptions (cfg) {},
164
+ // extendManifestJson (json) {}
165
+ // extendPWACustomSWConf (esbuildConf) {}
166
+ },
167
+
168
+ // Full list of options: https://v2.quasar.dev/quasar-cli-vite/developing-cordova-apps/configuring-cordova
169
+ cordova: {
170
+ // noIosLegacyBuildFlag: true, // uncomment only if you know what you are doing
171
+ },
172
+
173
+ // Full list of options: https://v2.quasar.dev/quasar-cli-vite/developing-capacitor-apps/configuring-capacitor
174
+ capacitor: {
175
+ hideSplashscreen: true
176
+ },
177
+
178
+ // Full list of options: https://v2.quasar.dev/quasar-cli-vite/developing-electron-apps/configuring-electron
179
+ electron: {
180
+ // extendElectronMainConf (esbuildConf)
181
+ // extendElectronPreloadConf (esbuildConf)
182
+
183
+ // specify the debugging port to use for the Electron app when running in development mode
184
+ inspectPort: 5858,
185
+
186
+ bundler: 'packager', // 'packager' or 'builder'
187
+
188
+ packager: {
189
+ // https://github.com/electron-userland/electron-packager/blob/master/docs/api.md#options
190
+
191
+ // OS X / Mac App Store
192
+ // appBundleId: '',
193
+ // appCategoryType: '',
194
+ // osxSign: '',
195
+ // protocol: 'myapp://path',
196
+
197
+ // Windows only
198
+ // win32metadata: { ... }
199
+ },
200
+
201
+ builder: {
202
+ // https://www.electron.build/configuration/configuration
203
+
204
+ appId: 'templates'
205
+ }
206
+ },
207
+
208
+ // Full list of options: https://v2.quasar.dev/quasar-cli-vite/developing-browser-extensions/configuring-bex
209
+ bex: {
210
+ contentScripts: [
211
+ 'my-content-script'
212
+ ],
213
+
214
+ // extendBexScriptsConf (esbuildConf) {}
215
+ // extendBexManifestJson (json) {}
216
+ }
217
+ }
218
+ });
@@ -0,0 +1,9 @@
1
+ <template>
2
+ <router-view />
3
+ </template>
4
+
5
+ <script setup>
6
+ defineOptions({
7
+ name: 'App'
8
+ });
9
+ </script>
@@ -0,0 +1,15 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 356 360">
2
+ <path
3
+ d="M43.4 303.4c0 3.8-2.3 6.3-7.1 6.3h-15v-22h14.4c4.3 0 6.2 2.2 6.2 5.2 0 2.6-1.5 4.4-3.4 5 2.8.4 4.9 2.5 4.9 5.5zm-8-13H24.1v6.9H35c2.1 0 4-1.3 4-3.8 0-2.2-1.3-3.1-3.7-3.1zm5.1 12.6c0-2.3-1.8-3.7-4-3.7H24.2v7.7h11.7c3.4 0 4.6-1.8 4.6-4zm36.3 4v2.7H56v-22h20.6v2.7H58.9v6.8h14.6v2.3H58.9v7.5h17.9zm23-5.8v8.5H97v-8.5l-11-13.4h3.4l8.9 11 8.8-11h3.4l-10.8 13.4zm19.1-1.8V298c0-7.9 5.2-10.7 12.7-10.7 7.5 0 13 2.8 13 10.7v1.4c0 7.9-5.5 10.8-13 10.8s-12.7-3-12.7-10.8zm22.7 0V298c0-5.7-3.9-8-10-8-6 0-9.8 2.3-9.8 8v1.4c0 5.8 3.8 8.1 9.8 8.1 6 0 10-2.3 10-8.1zm37.2-11.6v21.9h-2.9l-15.8-17.9v17.9h-2.8v-22h3l15.6 18v-18h2.9zm37.9 10.2v1.3c0 7.8-5.2 10.4-12.4 10.4H193v-22h11.2c7.2 0 12.4 2.8 12.4 10.3zm-3 0c0-5.3-3.3-7.6-9.4-7.6h-8.4V307h8.4c6 0 9.5-2 9.5-7.7V298zm50.8-7.6h-9.7v19.3h-3v-19.3h-9.7v-2.6h22.4v2.6zm34.4-2.6v21.9h-3v-10.1h-16.8v10h-2.8v-21.8h2.8v9.2H296v-9.2h2.9zm34.9 19.2v2.7h-20.7v-22h20.6v2.7H316v6.8h14.5v2.3H316v7.5h17.8zM24 340.2v7.3h13.9v2.4h-14v9.6H21v-22h20v2.7H24zm41.5 11.4h-9.8v7.9H53v-22h13.3c5.1 0 8 1.9 8 6.8 0 3.7-2 6.3-5.6 7l6 8.2h-3.3l-5.8-8zm-9.8-2.6H66c3.1 0 5.3-1.5 5.3-4.7 0-3.3-2.2-4.1-5.3-4.1H55.7v8.8zm47.9 6.2H89l-2 4.3h-3.2l10.7-22.2H98l10.7 22.2h-3.2l-2-4.3zm-1-2.3l-6.3-13-6 13h12.2zm46.3-15.3v21.9H146v-17.2L135.7 358h-2.1l-10.2-15.6v17h-2.8v-21.8h3l11 16.9 11.3-17h3zm35 19.3v2.6h-20.7v-22h20.6v2.7H166v6.8h14.5v2.3H166v7.6h17.8zm47-19.3l-8.3 22h-3l-7.1-18.6-7 18.6h-3l-8.2-22h3.3L204 356l6.8-18.5h3.4L221 356l6.6-18.5h3.3zm10 11.6v-1.4c0-7.8 5.2-10.7 12.7-10.7 7.6 0 13 2.9 13 10.7v1.4c0 7.9-5.4 10.8-13 10.8-7.5 0-12.7-3-12.7-10.8zm22.8 0v-1.4c0-5.7-4-8-10-8s-9.9 2.3-9.9 8v1.4c0 5.8 3.8 8.2 9.8 8.2 6.1 0 10-2.4 10-8.2zm28.3 2.4h-9.8v7.9h-2.8v-22h13.2c5.2 0 8 1.9 8 6.8 0 3.7-2 6.3-5.6 7l6 8.2h-3.3l-5.8-8zm-9.8-2.6h10.2c3 0 5.2-1.5 5.2-4.7 0-3.3-2.1-4.1-5.2-4.1h-10.2v8.8zm40.3-1.5l-6.8 5.6v6.4h-2.9v-22h2.9v12.3l15.2-12.2h3.7l-9.9 8.1 10.3 13.8h-3.6l-8.9-12z" />
4
+ <path fill="#050A14"
5
+ d="M188.4 71.7a10.4 10.4 0 01-20.8 0 10.4 10.4 0 1120.8 0zM224.2 45c-2.2-3.9-5-7.5-8.2-10.7l-12 7c-3.7-3.2-8-5.7-12.6-7.3a49.4 49.4 0 00-9.7 13.9 59 59 0 0140.1 14l7.6-4.4a57 57 0 00-5.2-12.5zM178 125.1c4.5 0 9-.6 13.4-1.7v-14a40 40 0 0012.5-7.2 47.7 47.7 0 00-7.1-15.3 59 59 0 01-32.2 27.7v8.7c4.4 1.2 8.9 1.8 13.4 1.8zM131.8 45c-2.3 4-4 8.1-5.2 12.5l12 7a40 40 0 000 14.4c5.7 1.5 11.3 2 16.9 1.5a59 59 0 01-8-41.7l-7.5-4.3c-3.2 3.2-6 6.7-8.2 10.6z" />
6
+ <path fill="#00B4FF"
7
+ d="M224.2 98.4c2.3-3.9 4-8 5.2-12.4l-12-7a40 40 0 000-14.5c-5.7-1.5-11.3-2-16.9-1.5a59 59 0 018 41.7l7.5 4.4c3.2-3.2 6-6.8 8.2-10.7zm-92.4 0c2.2 4 5 7.5 8.2 10.7l12-7a40 40 0 0012.6 7.3c4-4.1 7.3-8.8 9.7-13.8a59 59 0 01-40-14l-7.7 4.4c1.2 4.3 3 8.5 5.2 12.4zm46.2-80c-4.5 0-9 .5-13.4 1.7V34a40 40 0 00-12.5 7.2c1.5 5.7 4 10.8 7.1 15.4a59 59 0 0132.2-27.7V20a53.3 53.3 0 00-13.4-1.8z" />
8
+ <path fill="#00B4FF"
9
+ d="M178 9.2a62.6 62.6 0 11-.1 125.2A62.6 62.6 0 01178 9.2m0-9.2a71.7 71.7 0 100 143.5A71.7 71.7 0 00178 0z" />
10
+ <path fill="#050A14"
11
+ d="M96.6 212v4.3c-9.2-.8-15.4-5.8-15.4-17.8V180h4.6v18.4c0 8.6 4 12.6 10.8 13.5zm16-31.9v18.4c0 8.9-4.3 12.8-10.9 13.5v4.4c9.2-.7 15.5-5.6 15.5-18v-18.3h-4.7zM62.2 199v-2.2c0-12.7-8.8-17.4-21-17.4-12.1 0-20.7 4.7-20.7 17.4v2.2c0 12.8 8.6 17.6 20.7 17.6 1.5 0 3-.1 4.4-.3l11.8 6.2 2-3.3-8.2-4-6.4-3.1a32 32 0 01-3.6.2c-9.8 0-16-3.9-16-13.3v-2.2c0-9.3 6.2-13.1 16-13.1 9.9 0 16.3 3.8 16.3 13.1v2.2c0 5.3-2.1 8.7-5.6 10.8l4.8 2.4c3.4-2.8 5.5-7 5.5-13.2zM168 215.6h5.1L156 179.7h-4.8l17 36zM143 205l7.4-15.7-2.4-5-15.1 31.4h5.1l3.3-7h18.3l-1.8-3.7H143zm133.7 10.7h5.2l-17.3-35.9h-4.8l17 36zm-25-10.7l7.4-15.7-2.4-5-15.1 31.4h5.1l3.3-7h18.3l-1.7-3.7h-14.8zm73.8-2.5c6-1.2 9-5.4 9-11.4 0-8-4.5-10.9-12.9-10.9h-21.4v35.5h4.6v-31.3h16.5c5 0 8.5 1.4 8.5 6.7 0 5.2-3.5 7.7-8.5 7.7h-11.4v4.1h10.7l9.3 12.8h5.5l-9.9-13.2zm-117.4 9.9c-9.7 0-14.7-2.5-18.6-6.3l-2.2 3.8c5.1 5 11 6.7 21 6.7 1.6 0 3.1-.1 4.6-.3l-1.9-4h-3zm18.4-7c0-6.4-4.7-8.6-13.8-9.4l-10.1-1c-6.7-.7-9.3-2.2-9.3-5.6 0-2.5 1.4-4 4.6-5l-1.8-3.8c-4.7 1.4-7.5 4.2-7.5 8.9 0 5.2 3.4 8.7 13 9.6l11.3 1.2c6.4.6 8.9 2 8.9 5.4 0 2.7-2.1 4.7-6 5.8l1.8 3.9c5.3-1.6 8.9-4.7 8.9-10zm-20.3-21.9c7.9 0 13.3 1.8 18.1 5.7l1.8-3.9a30 30 0 00-19.6-5.9c-2 0-4 .1-5.7.3l1.9 4 3.5-.2z" />
12
+ <path fill="#00B4FF"
13
+ d="M.5 251.9c29.6-.5 59.2-.8 88.8-1l88.7-.3 88.7.3 44.4.4 44.4.6-44.4.6-44.4.4-88.7.3-88.7-.3a7981 7981 0 01-88.8-1z" />
14
+ <path fill="none" d="M-565.2 324H-252v15.8h-313.2z" />
15
+ </svg>
File without changes