zango 0.2.0a0__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 (204) hide show
  1. zango-0.2.0a0/LICENSE +193 -0
  2. zango-0.2.0a0/PKG-INFO +114 -0
  3. zango-0.2.0a0/README.md +68 -0
  4. zango-0.2.0a0/setup.cfg +4 -0
  5. zango-0.2.0a0/setup.py +53 -0
  6. zango-0.2.0a0/src/zango.egg-info/PKG-INFO +114 -0
  7. zango-0.2.0a0/src/zango.egg-info/SOURCES.txt +202 -0
  8. zango-0.2.0a0/src/zango.egg-info/dependency_links.txt +1 -0
  9. zango-0.2.0a0/src/zango.egg-info/entry_points.txt +2 -0
  10. zango-0.2.0a0/src/zango.egg-info/requires.txt +33 -0
  11. zango-0.2.0a0/src/zango.egg-info/top_level.txt +1 -0
  12. zango-0.2.0a0/src/zcore/__init__.py +1 -0
  13. zango-0.2.0a0/src/zcore/api/__init__.py +0 -0
  14. zango-0.2.0a0/src/zcore/api/app_auth/__init__.py +0 -0
  15. zango-0.2.0a0/src/zcore/api/app_auth/profile/__init__.py +0 -0
  16. zango-0.2.0a0/src/zcore/api/app_auth/profile/v1/__init__.py +0 -0
  17. zango-0.2.0a0/src/zcore/api/app_auth/profile/v1/serializers.py +9 -0
  18. zango-0.2.0a0/src/zcore/api/app_auth/profile/v1/urls.py +10 -0
  19. zango-0.2.0a0/src/zcore/api/app_auth/profile/v1/utils.py +149 -0
  20. zango-0.2.0a0/src/zcore/api/app_auth/profile/v1/views.py +77 -0
  21. zango-0.2.0a0/src/zcore/api/app_auth/urls.py +7 -0
  22. zango-0.2.0a0/src/zcore/api/platform/__init__.py +0 -0
  23. zango-0.2.0a0/src/zcore/api/platform/auth/__init__.py +0 -0
  24. zango-0.2.0a0/src/zcore/api/platform/auth/v1/__init__.py +0 -0
  25. zango-0.2.0a0/src/zcore/api/platform/auth/v1/serializers.py +20 -0
  26. zango-0.2.0a0/src/zcore/api/platform/auth/v1/urls.py +22 -0
  27. zango-0.2.0a0/src/zcore/api/platform/auth/v1/views.py +167 -0
  28. zango-0.2.0a0/src/zcore/api/platform/codeassist/__init__.py +0 -0
  29. zango-0.2.0a0/src/zcore/api/platform/codeassist/v1/__init__.py +0 -0
  30. zango-0.2.0a0/src/zcore/api/platform/codeassist/v1/urls.py +17 -0
  31. zango-0.2.0a0/src/zcore/api/platform/codeassist/v1/utils.py +9 -0
  32. zango-0.2.0a0/src/zcore/api/platform/codeassist/v1/views.py +308 -0
  33. zango-0.2.0a0/src/zcore/api/platform/packages/__init__.py +0 -0
  34. zango-0.2.0a0/src/zcore/api/platform/packages/v1/__init__.py +0 -0
  35. zango-0.2.0a0/src/zcore/api/platform/packages/v1/urls.py +11 -0
  36. zango-0.2.0a0/src/zcore/api/platform/packages/v1/views.py +71 -0
  37. zango-0.2.0a0/src/zcore/api/platform/permissions/__init__.py +0 -0
  38. zango-0.2.0a0/src/zcore/api/platform/permissions/v1/__init__.py +0 -0
  39. zango-0.2.0a0/src/zcore/api/platform/permissions/v1/serializers.py +51 -0
  40. zango-0.2.0a0/src/zcore/api/platform/permissions/v1/urls.py +22 -0
  41. zango-0.2.0a0/src/zcore/api/platform/permissions/v1/views.py +173 -0
  42. zango-0.2.0a0/src/zcore/api/platform/tasks/__init__.py +0 -0
  43. zango-0.2.0a0/src/zcore/api/platform/tasks/v1/__init__.py +0 -0
  44. zango-0.2.0a0/src/zcore/api/platform/tasks/v1/serializers.py +44 -0
  45. zango-0.2.0a0/src/zcore/api/platform/tasks/v1/urls.py +7 -0
  46. zango-0.2.0a0/src/zcore/api/platform/tasks/v1/views.py +126 -0
  47. zango-0.2.0a0/src/zcore/api/platform/tenancy/__init__.py +0 -0
  48. zango-0.2.0a0/src/zcore/api/platform/tenancy/v1/__init__.py +0 -0
  49. zango-0.2.0a0/src/zcore/api/platform/tenancy/v1/serializers.py +152 -0
  50. zango-0.2.0a0/src/zcore/api/platform/tenancy/v1/urls.py +61 -0
  51. zango-0.2.0a0/src/zcore/api/platform/tenancy/v1/views.py +591 -0
  52. zango-0.2.0a0/src/zcore/api/platform/urls.py +10 -0
  53. zango-0.2.0a0/src/zcore/apps/__init__.py +13 -0
  54. zango-0.2.0a0/src/zcore/apps/appauth/__init__.py +0 -0
  55. zango-0.2.0a0/src/zcore/apps/appauth/admin.py +5 -0
  56. zango-0.2.0a0/src/zcore/apps/appauth/apps.py +9 -0
  57. zango-0.2.0a0/src/zcore/apps/appauth/auth_backend.py +30 -0
  58. zango-0.2.0a0/src/zcore/apps/appauth/migrations/0001_initial.py +205 -0
  59. zango-0.2.0a0/src/zcore/apps/appauth/migrations/0002_default_user_roles.py +24 -0
  60. zango-0.2.0a0/src/zcore/apps/appauth/migrations/0003_remove_userrolemodel_temp_field_appusermodel_mobile_and_more.py +40 -0
  61. zango-0.2.0a0/src/zcore/apps/appauth/migrations/0004_oldpasswords.py +55 -0
  62. zango-0.2.0a0/src/zcore/apps/appauth/migrations/0005_remove_appusermodel_user.py +16 -0
  63. zango-0.2.0a0/src/zcore/apps/appauth/migrations/0006_appusermodel_app_objects.py +18 -0
  64. zango-0.2.0a0/src/zcore/apps/appauth/migrations/__init__.py +0 -0
  65. zango-0.2.0a0/src/zcore/apps/appauth/models.py +266 -0
  66. zango-0.2.0a0/src/zcore/apps/appauth/serializers.py +15 -0
  67. zango-0.2.0a0/src/zcore/apps/appauth/signals.py +15 -0
  68. zango-0.2.0a0/src/zcore/apps/appauth/templates/app.html +22 -0
  69. zango-0.2.0a0/src/zcore/apps/appauth/templates/app_login_signup.html +21 -0
  70. zango-0.2.0a0/src/zcore/apps/appauth/tests.py +3 -0
  71. zango-0.2.0a0/src/zcore/apps/appauth/urls.py +10 -0
  72. zango-0.2.0a0/src/zcore/apps/appauth/views.py +22 -0
  73. zango-0.2.0a0/src/zcore/apps/dynamic_models/__init__.py +2 -0
  74. zango-0.2.0a0/src/zcore/apps/dynamic_models/admin.py +3 -0
  75. zango-0.2.0a0/src/zcore/apps/dynamic_models/apps.py +28 -0
  76. zango-0.2.0a0/src/zcore/apps/dynamic_models/fields/__init__.py +127 -0
  77. zango-0.2.0a0/src/zcore/apps/dynamic_models/management/__init__.py +0 -0
  78. zango-0.2.0a0/src/zcore/apps/dynamic_models/management/commands/__init__.py +0 -0
  79. zango-0.2.0a0/src/zcore/apps/dynamic_models/management/commands/reload_tenant.py +8 -0
  80. zango-0.2.0a0/src/zcore/apps/dynamic_models/migrations/__init__.py +0 -0
  81. zango-0.2.0a0/src/zcore/apps/dynamic_models/models.py +415 -0
  82. zango-0.2.0a0/src/zcore/apps/dynamic_models/permissions.py +19 -0
  83. zango-0.2.0a0/src/zcore/apps/dynamic_models/registry.py +23 -0
  84. zango-0.2.0a0/src/zcore/apps/dynamic_models/signals.py +14 -0
  85. zango-0.2.0a0/src/zcore/apps/dynamic_models/templates/default_landing.html +198 -0
  86. zango-0.2.0a0/src/zcore/apps/dynamic_models/tests.py +3 -0
  87. zango-0.2.0a0/src/zcore/apps/dynamic_models/urls.py +14 -0
  88. zango-0.2.0a0/src/zcore/apps/dynamic_models/views.py +90 -0
  89. zango-0.2.0a0/src/zcore/apps/dynamic_models/workspace/__init__.py +0 -0
  90. zango-0.2.0a0/src/zcore/apps/dynamic_models/workspace/base.py +450 -0
  91. zango-0.2.0a0/src/zcore/apps/dynamic_models/workspace/lifecycle.py +25 -0
  92. zango-0.2.0a0/src/zcore/apps/dynamic_models/workspace/wtree.py +34 -0
  93. zango-0.2.0a0/src/zcore/apps/object_store/__init__.py +0 -0
  94. zango-0.2.0a0/src/zcore/apps/object_store/admin.py +7 -0
  95. zango-0.2.0a0/src/zcore/apps/object_store/apps.py +6 -0
  96. zango-0.2.0a0/src/zcore/apps/object_store/migrations/0001_initial.py +25 -0
  97. zango-0.2.0a0/src/zcore/apps/object_store/migrations/__init__.py +0 -0
  98. zango-0.2.0a0/src/zcore/apps/object_store/models.py +62 -0
  99. zango-0.2.0a0/src/zcore/apps/object_store/tests.py +3 -0
  100. zango-0.2.0a0/src/zcore/apps/object_store/views.py +3 -0
  101. zango-0.2.0a0/src/zcore/apps/permissions/__init__.py +0 -0
  102. zango-0.2.0a0/src/zcore/apps/permissions/admin.py +9 -0
  103. zango-0.2.0a0/src/zcore/apps/permissions/apps.py +6 -0
  104. zango-0.2.0a0/src/zcore/apps/permissions/migrations/0001_initial.py +63 -0
  105. zango-0.2.0a0/src/zcore/apps/permissions/migrations/0002_policymodel_type_alter_policymodel_expiry.py +26 -0
  106. zango-0.2.0a0/src/zcore/apps/permissions/migrations/0003_default_policy.py +24 -0
  107. zango-0.2.0a0/src/zcore/apps/permissions/migrations/0004_policymodel_path_alter_policymodel_name_and_more.py +27 -0
  108. zango-0.2.0a0/src/zcore/apps/permissions/migrations/__init__.py +0 -0
  109. zango-0.2.0a0/src/zcore/apps/permissions/mixin.py +126 -0
  110. zango-0.2.0a0/src/zcore/apps/permissions/models.py +110 -0
  111. zango-0.2.0a0/src/zcore/apps/permissions/tests.py +3 -0
  112. zango-0.2.0a0/src/zcore/apps/permissions/views.py +3 -0
  113. zango-0.2.0a0/src/zcore/apps/shared/__init__.py +12 -0
  114. zango-0.2.0a0/src/zcore/apps/shared/platformauth/__init__.py +0 -0
  115. zango-0.2.0a0/src/zcore/apps/shared/platformauth/abstract_model.py +76 -0
  116. zango-0.2.0a0/src/zcore/apps/shared/platformauth/admin.py +6 -0
  117. zango-0.2.0a0/src/zcore/apps/shared/platformauth/apps.py +10 -0
  118. zango-0.2.0a0/src/zcore/apps/shared/platformauth/auth_backend.py +28 -0
  119. zango-0.2.0a0/src/zcore/apps/shared/platformauth/migrations/0001_initial.py +150 -0
  120. zango-0.2.0a0/src/zcore/apps/shared/platformauth/migrations/0002_platformusermodel_is_superadmin_and_more.py +33 -0
  121. zango-0.2.0a0/src/zcore/apps/shared/platformauth/migrations/__init__.py +0 -0
  122. zango-0.2.0a0/src/zcore/apps/shared/platformauth/models.py +200 -0
  123. zango-0.2.0a0/src/zcore/apps/shared/platformauth/templates/app_panel/app_panel_login.html +131 -0
  124. zango-0.2.0a0/src/zcore/apps/shared/platformauth/tests.py +3 -0
  125. zango-0.2.0a0/src/zcore/apps/shared/platformauth/urls.py +29 -0
  126. zango-0.2.0a0/src/zcore/apps/shared/platformauth/views.py +38 -0
  127. zango-0.2.0a0/src/zcore/apps/shared/tenancy/__init__.py +0 -0
  128. zango-0.2.0a0/src/zcore/apps/shared/tenancy/admin.py +8 -0
  129. zango-0.2.0a0/src/zcore/apps/shared/tenancy/apps.py +6 -0
  130. zango-0.2.0a0/src/zcore/apps/shared/tenancy/management/__init__.py +0 -0
  131. zango-0.2.0a0/src/zcore/apps/shared/tenancy/management/commands/__init__.py +0 -0
  132. zango-0.2.0a0/src/zcore/apps/shared/tenancy/management/commands/sync_static.py +58 -0
  133. zango-0.2.0a0/src/zcore/apps/shared/tenancy/management/commands/ws_makemigration.py +74 -0
  134. zango-0.2.0a0/src/zcore/apps/shared/tenancy/management/commands/ws_migrate.py +39 -0
  135. zango-0.2.0a0/src/zcore/apps/shared/tenancy/migrations/0001_initial.py +969 -0
  136. zango-0.2.0a0/src/zcore/apps/shared/tenancy/migrations/0002_rename_is_default_themesmodel_is_active.py +17 -0
  137. zango-0.2.0a0/src/zcore/apps/shared/tenancy/migrations/0003_themesmodel_created_at_themesmodel_created_by_and_more.py +36 -0
  138. zango-0.2.0a0/src/zcore/apps/shared/tenancy/migrations/0004_tenantmodel_fav_icon_alter_tenantmodel_logo.py +35 -0
  139. zango-0.2.0a0/src/zcore/apps/shared/tenancy/migrations/__init__.py +0 -0
  140. zango-0.2.0a0/src/zcore/apps/shared/tenancy/models.py +179 -0
  141. zango-0.2.0a0/src/zcore/apps/shared/tenancy/tasks.py +65 -0
  142. zango-0.2.0a0/src/zcore/apps/shared/tenancy/templates/app_panel.html +25 -0
  143. zango-0.2.0a0/src/zcore/apps/shared/tenancy/templatetags/__init__.py +0 -0
  144. zango-0.2.0a0/src/zcore/apps/shared/tenancy/templatetags/zstatic.py +14 -0
  145. zango-0.2.0a0/src/zcore/apps/shared/tenancy/tests.py +3 -0
  146. zango-0.2.0a0/src/zcore/apps/shared/tenancy/urls.py +6 -0
  147. zango-0.2.0a0/src/zcore/apps/shared/tenancy/utils.py +54 -0
  148. zango-0.2.0a0/src/zcore/apps/shared/tenancy/views.py +12 -0
  149. zango-0.2.0a0/src/zcore/apps/shared/tenancy/workspace_folder_template/cookiecutter.json +3 -0
  150. zango-0.2.0a0/src/zcore/apps/shared/tenancy/workspace_folder_template/{{cookiecutter.app_name}}/manifest.json +3 -0
  151. zango-0.2.0a0/src/zcore/apps/shared/tenancy/workspace_folder_template/{{cookiecutter.app_name}}/settings.json +6 -0
  152. zango-0.2.0a0/src/zcore/apps/tasks/__init__.py +0 -0
  153. zango-0.2.0a0/src/zcore/apps/tasks/apps.py +6 -0
  154. zango-0.2.0a0/src/zcore/apps/tasks/migrations/0001_initial.py +83 -0
  155. zango-0.2.0a0/src/zcore/apps/tasks/migrations/__init__.py +0 -0
  156. zango-0.2.0a0/src/zcore/apps/tasks/models.py +80 -0
  157. zango-0.2.0a0/src/zcore/apps/tasks/utils.py +105 -0
  158. zango-0.2.0a0/src/zcore/assets/app_landing/css/styles.css +302 -0
  159. zango-0.2.0a0/src/zcore/assets/app_panel/css/styles.css +675 -0
  160. zango-0.2.0a0/src/zcore/assets/app_panel/images/zelthyLogo.svg +3 -0
  161. zango-0.2.0a0/src/zcore/assets/app_panel/images/zelthyLogoIpad.svg +8 -0
  162. zango-0.2.0a0/src/zcore/assets/app_panel/images/zelthyLogoIphone.svg +8 -0
  163. zango-0.2.0a0/src/zcore/assets/app_panel/js/build.v1.0.42.min.js +1 -0
  164. zango-0.2.0a0/src/zcore/assets/app_panel/js/build.v1.0.43.min.js +1 -0
  165. zango-0.2.0a0/src/zcore/assets/app_panel/js/build.v1.0.44.min.js +1 -0
  166. zango-0.2.0a0/src/zcore/assets/js/jquery/3.7.1/jquery.min.js +2 -0
  167. zango-0.2.0a0/src/zcore/cli/__init__.py +16 -0
  168. zango-0.2.0a0/src/zcore/cli/install_package.py +15 -0
  169. zango-0.2.0a0/src/zcore/cli/package_info.py +32 -0
  170. zango-0.2.0a0/src/zcore/cli/project_template/manage.py +22 -0
  171. zango-0.2.0a0/src/zcore/cli/project_template/project_name/__init__.py +3 -0
  172. zango-0.2.0a0/src/zcore/cli/project_template/project_name/asgi.py +16 -0
  173. zango-0.2.0a0/src/zcore/cli/project_template/project_name/settings.py +132 -0
  174. zango-0.2.0a0/src/zcore/cli/project_template/project_name/urls.py +22 -0
  175. zango-0.2.0a0/src/zcore/cli/project_template/project_name/urls_public.py +7 -0
  176. zango-0.2.0a0/src/zcore/cli/project_template/project_name/urls_tenants.py +7 -0
  177. zango-0.2.0a0/src/zcore/cli/project_template/project_name/wsgi.py +16 -0
  178. zango-0.2.0a0/src/zcore/cli/start_project.py +234 -0
  179. zango-0.2.0a0/src/zcore/cli/utils.py +24 -0
  180. zango-0.2.0a0/src/zcore/config/__init__.py +0 -0
  181. zango-0.2.0a0/src/zcore/config/celery.py +18 -0
  182. zango-0.2.0a0/src/zcore/config/settings/__init__.py +0 -0
  183. zango-0.2.0a0/src/zcore/config/settings/base.py +178 -0
  184. zango-0.2.0a0/src/zcore/config/urls_public.py +27 -0
  185. zango-0.2.0a0/src/zcore/config/urls_tenants.py +22 -0
  186. zango-0.2.0a0/src/zcore/core/__init__.py +1 -0
  187. zango-0.2.0a0/src/zcore/core/api/__init__.py +3 -0
  188. zango-0.2.0a0/src/zcore/core/api/base.py +55 -0
  189. zango-0.2.0a0/src/zcore/core/api/utils.py +28 -0
  190. zango-0.2.0a0/src/zcore/core/common_utils.py +36 -0
  191. zango-0.2.0a0/src/zcore/core/custom_pluginbase.py +27 -0
  192. zango-0.2.0a0/src/zcore/core/generic_views/__init__.py +0 -0
  193. zango-0.2.0a0/src/zcore/core/generic_views/base.py +54 -0
  194. zango-0.2.0a0/src/zcore/core/internal_requests.py +192 -0
  195. zango-0.2.0a0/src/zcore/core/model_mixins.py +33 -0
  196. zango-0.2.0a0/src/zcore/core/package_utils.py +195 -0
  197. zango-0.2.0a0/src/zcore/core/permissions.py +74 -0
  198. zango-0.2.0a0/src/zcore/core/storage_utils.py +77 -0
  199. zango-0.2.0a0/src/zcore/core/tasks.py +38 -0
  200. zango-0.2.0a0/src/zcore/core/template_loader.py +48 -0
  201. zango-0.2.0a0/src/zcore/core/utils.py +100 -0
  202. zango-0.2.0a0/src/zcore/middleware/__init__.py +0 -0
  203. zango-0.2.0a0/src/zcore/middleware/request.py +45 -0
  204. zango-0.2.0a0/src/zcore/middleware/tenant.py +157 -0
zango-0.2.0a0/LICENSE ADDED
@@ -0,0 +1,193 @@
1
+ Copyright (c) Healthlane Technologies Pvt. Ltd. ("Zelthy")
2
+
3
+ Parts of Zelthy's software are licensed as follows:
4
+
5
+ * All content residing under the "docs/" directory of this repository is licensed under
6
+ "Creative Commons: CC BY-SA 4.0 license".
7
+ * All content that resides under the "ee/" directory of this repository, if that
8
+ directory exists, is licensed under the license defined in "enterprise/LICENSE".
9
+ * All client-side JavaScript (when served directly or after being compiled, arranged,
10
+ augmented, or combined), is licensed under the "MIT Expat" license.
11
+ * All third party components incorporated into Zelthy are licensed under
12
+ the original license provided by the owner of the applicable component.
13
+ * Content outside of the above mentioned directories or restrictions above [Zelthy
14
+ Developer's Edition ("Zelthy DE")] is available under the "Apache Version 2.0, January 2004"
15
+ license as defined below.
16
+
17
+
18
+ Apache License
19
+ Version 2.0, January 2004
20
+ http://www.apache.org/licenses/
21
+
22
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
23
+
24
+ 1. Definitions.
25
+
26
+ "License" shall mean the terms and conditions for use, reproduction,
27
+ and distribution as defined by Sections 1 through 9 of this document.
28
+
29
+ "Licensor" shall mean the copyright owner or entity authorized by
30
+ the copyright owner that is granting the License.
31
+
32
+ "Legal Entity" shall mean the union of the acting entity and all
33
+ other entities that control, are controlled by, or are under common
34
+ control with that entity. For the purposes of this definition,
35
+ "control" means (i) the power, direct or indirect, to cause the
36
+ direction or management of such entity, whether by contract or
37
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
38
+ outstanding shares, or (iii) beneficial ownership of such entity.
39
+
40
+ "You" (or "Your") shall mean an individual or Legal Entity
41
+ exercising permissions granted by this License.
42
+
43
+ "Source" form shall mean the preferred form for making modifications,
44
+ including but not limited to software source code, documentation
45
+ source, and configuration files.
46
+
47
+ "Object" form shall mean any form resulting from mechanical
48
+ transformation or translation of a Source form, including but
49
+ not limited to compiled object code, generated documentation,
50
+ and conversions to other media types.
51
+
52
+ "Work" shall mean the work of authorship, whether in Source or
53
+ Object form, made available under the License, as indicated by a
54
+ copyright notice that is included in or attached to the work
55
+ (an example is provided in the Appendix below).
56
+
57
+ "Derivative Works" shall mean any work, whether in Source or Object
58
+ form, that is based on (or derived from) the Work and for which the
59
+ editorial revisions, annotations, elaborations, or other modifications
60
+ represent, as a whole, an original work of authorship. For the purposes
61
+ of this License, Derivative Works shall not include works that remain
62
+ separable from, or merely link (or bind by name) to the interfaces of,
63
+ the Work and Derivative Works thereof.
64
+
65
+ "Contribution" shall mean any work of authorship, including
66
+ the original version of the Work and any modifications or additions
67
+ to that Work or Derivative Works thereof, that is intentionally
68
+ submitted to Licensor for inclusion in the Work by the copyright owner
69
+ or by an individual or Legal Entity authorized to submit on behalf of
70
+ the copyright owner. For the purposes of this definition, "submitted"
71
+ means any form of electronic, verbal, or written communication sent
72
+ to the Licensor or its representatives, including but not limited to
73
+ communication on electronic mailing lists, source code control systems,
74
+ and issue tracking systems that are managed by, or on behalf of, the
75
+ Licensor for the purpose of discussing and improving the Work, but
76
+ excluding communication that is conspicuously marked or otherwise
77
+ designated in writing by the copyright owner as "Not a Contribution."
78
+
79
+ "Contributor" shall mean Licensor and any individual or Legal Entity
80
+ on behalf of whom a Contribution has been received by Licensor and
81
+ subsequently incorporated within the Work.
82
+
83
+ 2. Grant of Copyright License. Subject to the terms and conditions of
84
+ this License, each Contributor hereby grants to You a perpetual,
85
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
86
+ copyright license to reproduce, prepare Derivative Works of,
87
+ publicly display, publicly perform, sublicense, and distribute the
88
+ Work and such Derivative Works in Source or Object form.
89
+
90
+ 3. Grant of Patent License. Subject to the terms and conditions of
91
+ this License, each Contributor hereby grants to You a perpetual,
92
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
93
+ (except as stated in this section) patent license to make, have made,
94
+ use, offer to sell, sell, import, and otherwise transfer the Work,
95
+ where such license applies only to those patent claims licensable
96
+ by such Contributor that are necessarily infringed by their
97
+ Contribution(s) alone or by combination of their Contribution(s)
98
+ with the Work to which such Contribution(s) was submitted. If You
99
+ institute patent litigation against any entity (including a
100
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
101
+ or a Contribution incorporated within the Work constitutes direct
102
+ or contributory patent infringement, then any patent licenses
103
+ granted to You under this License for that Work shall terminate
104
+ as of the date such litigation is filed.
105
+
106
+ 4. Redistribution. You may reproduce and distribute copies of the
107
+ Work or Derivative Works thereof in any medium, with or without
108
+ modifications, and in Source or Object form, provided that You
109
+ meet the following conditions:
110
+
111
+ (a) You must give any other recipients of the Work or
112
+ Derivative Works a copy of this License; and
113
+
114
+ (b) You must cause any modified files to carry prominent notices
115
+ stating that You changed the files; and
116
+
117
+ (c) You must retain, in the Source form of any Derivative Works
118
+ that You distribute, all copyright, patent, trademark, and
119
+ attribution notices from the Source form of the Work,
120
+ excluding those notices that do not pertain to any part of
121
+ the Derivative Works; and
122
+
123
+ (d) If the Work includes a "NOTICE" text file as part of its
124
+ distribution, then any Derivative Works that You distribute must
125
+ include a readable copy of the attribution notices contained
126
+ within such NOTICE file, excluding those notices that do not
127
+ pertain to any part of the Derivative Works, in at least one
128
+ of the following places: within a NOTICE text file distributed
129
+ as part of the Derivative Works; within the Source form or
130
+ documentation, if provided along with the Derivative Works; or,
131
+ within a display generated by the Derivative Works, if and
132
+ wherever such third-party notices normally appear. The contents
133
+ of the NOTICE file are for informational purposes only and
134
+ do not modify the License. You may add Your own attribution
135
+ notices within Derivative Works that You distribute, alongside
136
+ or as an addendum to the NOTICE text from the Work, provided
137
+ that such additional attribution notices cannot be construed
138
+ as modifying the License.
139
+
140
+ You may add Your own copyright statement to Your modifications and
141
+ may provide additional or different license terms and conditions
142
+ for use, reproduction, or distribution of Your modifications, or
143
+ for any such Derivative Works as a whole, provided Your use,
144
+ reproduction, and distribution of the Work otherwise complies with
145
+ the conditions stated in this License.
146
+
147
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
148
+ any Contribution intentionally submitted for inclusion in the Work
149
+ by You to the Licensor shall be under the terms and conditions of
150
+ this License, without any additional terms or conditions.
151
+ Notwithstanding the above, nothing herein shall supersede or modify
152
+ the terms of any separate license agreement you may have executed
153
+ with Licensor regarding such Contributions.
154
+
155
+ 6. Trademarks. This License does not grant permission to use the trade
156
+ names, trademarks, service marks, or product names of the Licensor,
157
+ except as required for reasonable and customary use in describing the
158
+ origin of the Work and reproducing the content of the NOTICE file.
159
+
160
+ 7. Disclaimer of Warranty. Unless required by applicable law or
161
+ agreed to in writing, Licensor provides the Work (and each
162
+ Contributor provides its Contributions) on an "AS IS" BASIS,
163
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
164
+ implied, including, without limitation, any warranties or conditions
165
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
166
+ PARTICULAR PURPOSE. You are solely responsible for determining the
167
+ appropriateness of using or redistributing the Work and assume any
168
+ risks associated with Your exercise of permissions under this License.
169
+
170
+ 8. Limitation of Liability. In no event and under no legal theory,
171
+ whether in tort (including negligence), contract, or otherwise,
172
+ unless required by applicable law (such as deliberate and grossly
173
+ negligent acts) or agreed to in writing, shall any Contributor be
174
+ liable to You for damages, including any direct, indirect, special,
175
+ incidental, or consequential damages of any character arising as a
176
+ result of this License or out of the use or inability to use the
177
+ Work (including but not limited to damages for loss of goodwill,
178
+ work stoppage, computer failure or malfunction, or any and all
179
+ other commercial damages or losses), even if such Contributor
180
+ has been advised of the possibility of such damages.
181
+
182
+ 9. Accepting Warranty or Additional Liability. While redistributing
183
+ the Work or Derivative Works thereof, You may choose to offer,
184
+ and charge a fee for, acceptance of support, warranty, indemnity,
185
+ or other liability obligations and/or rights consistent with this
186
+ License. However, in accepting such obligations, You may act only
187
+ on Your own behalf and on Your sole responsibility, not on behalf
188
+ of any other Contributor, and only if You agree to indemnify,
189
+ defend, and hold each Contributor harmless for any liability
190
+ incurred by, or claims asserted against, such Contributor by reason
191
+ of your accepting any such warranty or additional liability.
192
+
193
+ END OF TERMS AND CONDITIONS
zango-0.2.0a0/PKG-INFO ADDED
@@ -0,0 +1,114 @@
1
+ Metadata-Version: 2.1
2
+ Name: zango
3
+ Version: 0.2.0a0
4
+ Summary: Zango: multi-tenant Django framework for building business apps
5
+ Home-page: https://github.com/Healthlane-Technologies/zelthy3
6
+ Author: Zelthy ("Healthlane Technologies")
7
+ Author-email: maintainers@zelthy.com
8
+ License: Apache License 2.0
9
+ Classifier: Framework :: Django
10
+ Classifier: Programming Language :: Python
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Requires-Dist: django==4.2.11
14
+ Requires-Dist: psycopg2-binary
15
+ Requires-Dist: django-tenants
16
+ Requires-Dist: djangorestframework
17
+ Requires-Dist: django-rest-knox
18
+ Requires-Dist: celery==5.3.1
19
+ Requires-Dist: flake8==6.1.0
20
+ Requires-Dist: django-cors-headers==4.2.0
21
+ Requires-Dist: pluginbase==1.0.1
22
+ Requires-Dist: click==8.1.7
23
+ Requires-Dist: phonenumberslite==8.13.23
24
+ Requires-Dist: django-phonenumber-field==7.1.0
25
+ Requires-Dist: django-redis==5.3.0
26
+ Requires-Dist: django-cachalot==2.6.1
27
+ Requires-Dist: django-debug-toolbar==4.2.0
28
+ Requires-Dist: django-formtools==2.4.1
29
+ Requires-Dist: django-crispy-forms==2.0
30
+ Requires-Dist: crispy-bootstrap5==0.7
31
+ Requires-Dist: cookiecutter==2.3.0
32
+ Requires-Dist: boto3==1.28.52
33
+ Requires-Dist: botocore==1.31.52
34
+ Requires-Dist: django-storages==1.14
35
+ Requires-Dist: django-celery-beat==2.5.0
36
+ Requires-Dist: django-smtp-ssl==1.0
37
+ Requires-Dist: PyJWT==2.8.0
38
+ Requires-Dist: XlsxWriter==3.1.9
39
+ Requires-Dist: pydub==0.25.1
40
+ Requires-Dist: django-celery-results==2.5.1
41
+ Requires-Dist: django-environ==0.11.2
42
+ Requires-Dist: pytz==2024.1
43
+ Requires-Dist: django-session-security==2.6.7
44
+ Requires-Dist: beautifulsoup4==4.12.3
45
+ Requires-Dist: python3-saml==1.16.0
46
+
47
+ <h1 align="center">
48
+ <a href="https://www.zelthy.com/">
49
+ <img src="https://yt3.googleusercontent.com/e1HArJ9U7Pj8MIf2MKGYW_6GGqdvwUTucgR6gs5u7LaBvAIfZT1INRASf0fOMC7ISVTDYqMPXw=s176-c-k-c0x00ffffff-no-rj" alt="ZCore" width="80px">
50
+ </a>
51
+ </h1>
52
+
53
+
54
+ [Website](https://www.zelthy.com/framework) • [Getting Started](https://docs.zelthy.com/docs/category/getting-started) • [Docs](https://docs.zelthy.com/)
55
+
56
+
57
+ [![PyPI version](https://badge.fury.io/py/zcorepy.svg)](https://badge.fury.io/py/zcorepy)
58
+ ![docs](https://img.shields.io/github/actions/workflow/status/Healthlane-Technologies/zelthy3/docs.yml?branch=main)
59
+ [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
60
+
61
+
62
+ ## ZCore is an open source multi-tenant Django framework for building enterprise apps
63
+
64
+ - Quickly build enterprise ready apps, leveraging the power of Django and ZCore package ecosystem
65
+ - Host multiple apps on a single deployment with complete isolation - Each app can have its own data models and workflows
66
+ - Built-in user management and user roles
67
+ - Rich ecosystem of packages - Leverage the free packages to develop most of your app workflows.
68
+ - Granular policy and permission framework linking user roles with views and models
69
+ - Open-core with all non-enterprise features under the Apache License allowing commercial and private use.
70
+
71
+
72
+ [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/Healthlane-Technologies/zelthy3-gitpod-sandbox-official/)
73
+
74
+ ![ZCore High Level Architecture](https://docs.zelthy.com/assets/images/Architecture_Diagram-e6eb1b24fca0554edca1110a7de26449.png)
75
+
76
+ #### App Panel - Central hub to manage all your apps
77
+ Perform tasks such as configuring permissions, managing user roles, and much more.
78
+
79
+ ![ZCore App Panel](https://github.com/Healthlane-Technologies/zelthy3/assets/22682748/b593a821-ec1d-4082-a590-e5ed52cb0c28)
80
+
81
+ #### Drastically reduce your per app cost through ZCore’s multi-tenant approach:
82
+
83
+ ZCore redefines multi-tenancy by enabling multiple different apps to run on a single server. Say goodbye to the limitations of traditional scaling methods. With our platform, you can run multiple different applications on a single server, which helps in keeping the cost in check.
84
+
85
+ ![ZCore Scaling](https://zelthy-initium-production-static.s3.amazonaws.com/static/zelthymain/react-images/cost-effective-scaling.svg)
86
+
87
+
88
+ #### Getting Started:
89
+ - [Docker](https://docs.zelthy.com/docs/documentation/getting-started/installing-zelthy/docker)
90
+ - [Manual](https://docs.zelthy.com/docs/documentation/getting-started/installing-zelthy/manual)
91
+ - [Gitpod](https://docs.zelthy.com/docs/documentation/getting-started/installing-zelthy/gitpod)
92
+
93
+ #### Free Packages
94
+ A few essential packages are freely available. These packages enable development of a wide variety of applications and are available for installation from the App Panel.
95
+ - [Login](https://docs.zelthy.com/login)
96
+ - [Frames](https://docs.zelthy.com/frame)
97
+ - [CRUD](https://docs.zelthy.com/crud)
98
+ - [Workflow](https://docs.zelthy.com/workflow)
99
+
100
+
101
+ #### Contributing:
102
+ You can contribute to ZCore in many ways, including:
103
+ - Leave your star in this repo.
104
+ - Share with your colleagues and friends
105
+ - Share your suggestions on our slack channel
106
+ - Create issues if you find something not working as expected or if you have suggestions on enhancements.
107
+ - Provide pull requests for any open issues
108
+
109
+
110
+ #### Official Documentation: https://docs.zelthy.com/
111
+
112
+
113
+
114
+
@@ -0,0 +1,68 @@
1
+ <h1 align="center">
2
+ <a href="https://www.zelthy.com/">
3
+ <img src="https://yt3.googleusercontent.com/e1HArJ9U7Pj8MIf2MKGYW_6GGqdvwUTucgR6gs5u7LaBvAIfZT1INRASf0fOMC7ISVTDYqMPXw=s176-c-k-c0x00ffffff-no-rj" alt="ZCore" width="80px">
4
+ </a>
5
+ </h1>
6
+
7
+
8
+ [Website](https://www.zelthy.com/framework) • [Getting Started](https://docs.zelthy.com/docs/category/getting-started) • [Docs](https://docs.zelthy.com/)
9
+
10
+
11
+ [![PyPI version](https://badge.fury.io/py/zcorepy.svg)](https://badge.fury.io/py/zcorepy)
12
+ ![docs](https://img.shields.io/github/actions/workflow/status/Healthlane-Technologies/zelthy3/docs.yml?branch=main)
13
+ [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
14
+
15
+
16
+ ## ZCore is an open source multi-tenant Django framework for building enterprise apps
17
+
18
+ - Quickly build enterprise ready apps, leveraging the power of Django and ZCore package ecosystem
19
+ - Host multiple apps on a single deployment with complete isolation - Each app can have its own data models and workflows
20
+ - Built-in user management and user roles
21
+ - Rich ecosystem of packages - Leverage the free packages to develop most of your app workflows.
22
+ - Granular policy and permission framework linking user roles with views and models
23
+ - Open-core with all non-enterprise features under the Apache License allowing commercial and private use.
24
+
25
+
26
+ [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/Healthlane-Technologies/zelthy3-gitpod-sandbox-official/)
27
+
28
+ ![ZCore High Level Architecture](https://docs.zelthy.com/assets/images/Architecture_Diagram-e6eb1b24fca0554edca1110a7de26449.png)
29
+
30
+ #### App Panel - Central hub to manage all your apps
31
+ Perform tasks such as configuring permissions, managing user roles, and much more.
32
+
33
+ ![ZCore App Panel](https://github.com/Healthlane-Technologies/zelthy3/assets/22682748/b593a821-ec1d-4082-a590-e5ed52cb0c28)
34
+
35
+ #### Drastically reduce your per app cost through ZCore’s multi-tenant approach:
36
+
37
+ ZCore redefines multi-tenancy by enabling multiple different apps to run on a single server. Say goodbye to the limitations of traditional scaling methods. With our platform, you can run multiple different applications on a single server, which helps in keeping the cost in check.
38
+
39
+ ![ZCore Scaling](https://zelthy-initium-production-static.s3.amazonaws.com/static/zelthymain/react-images/cost-effective-scaling.svg)
40
+
41
+
42
+ #### Getting Started:
43
+ - [Docker](https://docs.zelthy.com/docs/documentation/getting-started/installing-zelthy/docker)
44
+ - [Manual](https://docs.zelthy.com/docs/documentation/getting-started/installing-zelthy/manual)
45
+ - [Gitpod](https://docs.zelthy.com/docs/documentation/getting-started/installing-zelthy/gitpod)
46
+
47
+ #### Free Packages
48
+ A few essential packages are freely available. These packages enable development of a wide variety of applications and are available for installation from the App Panel.
49
+ - [Login](https://docs.zelthy.com/login)
50
+ - [Frames](https://docs.zelthy.com/frame)
51
+ - [CRUD](https://docs.zelthy.com/crud)
52
+ - [Workflow](https://docs.zelthy.com/workflow)
53
+
54
+
55
+ #### Contributing:
56
+ You can contribute to ZCore in many ways, including:
57
+ - Leave your star in this repo.
58
+ - Share with your colleagues and friends
59
+ - Share your suggestions on our slack channel
60
+ - Create issues if you find something not working as expected or if you have suggestions on enhancements.
61
+ - Provide pull requests for any open issues
62
+
63
+
64
+ #### Official Documentation: https://docs.zelthy.com/
65
+
66
+
67
+
68
+
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
zango-0.2.0a0/setup.py ADDED
@@ -0,0 +1,53 @@
1
+ import os
2
+ from setuptools import setup, find_packages
3
+ from pathlib import Path
4
+
5
+
6
+ PROJECT_DIR = os.path.dirname(__file__)
7
+ REQUIREMENTS_DIR = os.path.join(PROJECT_DIR, "requirements")
8
+
9
+ README = os.path.join(PROJECT_DIR, "README.md")
10
+
11
+ PLATFORM_VERSION = "0.2.0-alpha"
12
+
13
+
14
+ def get_requirements(env):
15
+ with open(os.path.join(REQUIREMENTS_DIR, f"{env}.txt")) as fp:
16
+ return [x.strip() for x in fp.read().split("\n") if not x.startswith("#")]
17
+
18
+
19
+ install_requires = get_requirements("base")
20
+
21
+
22
+ setup(
23
+ name="zango",
24
+ version=PLATFORM_VERSION,
25
+ license="Apache License 2.0",
26
+ description="Zango: multi-tenant Django framework for building business apps",
27
+ long_description=open(README).read(),
28
+ long_description_content_type="text/markdown",
29
+ author='Zelthy ("Healthlane Technologies")',
30
+ author_email="maintainers@zelthy.com",
31
+ url="https://github.com/Healthlane-Technologies/zelthy3",
32
+ package_dir={"": "src"},
33
+ packages=find_packages("src"),
34
+ package_data={
35
+ "zcore": [
36
+ "cli/project_template/**/*",
37
+ "assets/**",
38
+ "**/templates/**",
39
+ "**/workspace_folder_template/**",
40
+ ],
41
+ },
42
+ install_requires=install_requires,
43
+ classifiers=[
44
+ "Framework :: Django",
45
+ "Programming Language :: Python",
46
+ ],
47
+ entry_points={
48
+ "console_scripts": [
49
+ "zcore=zcore.cli:cli",
50
+ ],
51
+ },
52
+ license_files=["LICENSE"],
53
+ )
@@ -0,0 +1,114 @@
1
+ Metadata-Version: 2.1
2
+ Name: zango
3
+ Version: 0.2.0a0
4
+ Summary: Zango: multi-tenant Django framework for building business apps
5
+ Home-page: https://github.com/Healthlane-Technologies/zelthy3
6
+ Author: Zelthy ("Healthlane Technologies")
7
+ Author-email: maintainers@zelthy.com
8
+ License: Apache License 2.0
9
+ Classifier: Framework :: Django
10
+ Classifier: Programming Language :: Python
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Requires-Dist: django==4.2.11
14
+ Requires-Dist: psycopg2-binary
15
+ Requires-Dist: django-tenants
16
+ Requires-Dist: djangorestframework
17
+ Requires-Dist: django-rest-knox
18
+ Requires-Dist: celery==5.3.1
19
+ Requires-Dist: flake8==6.1.0
20
+ Requires-Dist: django-cors-headers==4.2.0
21
+ Requires-Dist: pluginbase==1.0.1
22
+ Requires-Dist: click==8.1.7
23
+ Requires-Dist: phonenumberslite==8.13.23
24
+ Requires-Dist: django-phonenumber-field==7.1.0
25
+ Requires-Dist: django-redis==5.3.0
26
+ Requires-Dist: django-cachalot==2.6.1
27
+ Requires-Dist: django-debug-toolbar==4.2.0
28
+ Requires-Dist: django-formtools==2.4.1
29
+ Requires-Dist: django-crispy-forms==2.0
30
+ Requires-Dist: crispy-bootstrap5==0.7
31
+ Requires-Dist: cookiecutter==2.3.0
32
+ Requires-Dist: boto3==1.28.52
33
+ Requires-Dist: botocore==1.31.52
34
+ Requires-Dist: django-storages==1.14
35
+ Requires-Dist: django-celery-beat==2.5.0
36
+ Requires-Dist: django-smtp-ssl==1.0
37
+ Requires-Dist: PyJWT==2.8.0
38
+ Requires-Dist: XlsxWriter==3.1.9
39
+ Requires-Dist: pydub==0.25.1
40
+ Requires-Dist: django-celery-results==2.5.1
41
+ Requires-Dist: django-environ==0.11.2
42
+ Requires-Dist: pytz==2024.1
43
+ Requires-Dist: django-session-security==2.6.7
44
+ Requires-Dist: beautifulsoup4==4.12.3
45
+ Requires-Dist: python3-saml==1.16.0
46
+
47
+ <h1 align="center">
48
+ <a href="https://www.zelthy.com/">
49
+ <img src="https://yt3.googleusercontent.com/e1HArJ9U7Pj8MIf2MKGYW_6GGqdvwUTucgR6gs5u7LaBvAIfZT1INRASf0fOMC7ISVTDYqMPXw=s176-c-k-c0x00ffffff-no-rj" alt="ZCore" width="80px">
50
+ </a>
51
+ </h1>
52
+
53
+
54
+ [Website](https://www.zelthy.com/framework) • [Getting Started](https://docs.zelthy.com/docs/category/getting-started) • [Docs](https://docs.zelthy.com/)
55
+
56
+
57
+ [![PyPI version](https://badge.fury.io/py/zcorepy.svg)](https://badge.fury.io/py/zcorepy)
58
+ ![docs](https://img.shields.io/github/actions/workflow/status/Healthlane-Technologies/zelthy3/docs.yml?branch=main)
59
+ [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
60
+
61
+
62
+ ## ZCore is an open source multi-tenant Django framework for building enterprise apps
63
+
64
+ - Quickly build enterprise ready apps, leveraging the power of Django and ZCore package ecosystem
65
+ - Host multiple apps on a single deployment with complete isolation - Each app can have its own data models and workflows
66
+ - Built-in user management and user roles
67
+ - Rich ecosystem of packages - Leverage the free packages to develop most of your app workflows.
68
+ - Granular policy and permission framework linking user roles with views and models
69
+ - Open-core with all non-enterprise features under the Apache License allowing commercial and private use.
70
+
71
+
72
+ [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/Healthlane-Technologies/zelthy3-gitpod-sandbox-official/)
73
+
74
+ ![ZCore High Level Architecture](https://docs.zelthy.com/assets/images/Architecture_Diagram-e6eb1b24fca0554edca1110a7de26449.png)
75
+
76
+ #### App Panel - Central hub to manage all your apps
77
+ Perform tasks such as configuring permissions, managing user roles, and much more.
78
+
79
+ ![ZCore App Panel](https://github.com/Healthlane-Technologies/zelthy3/assets/22682748/b593a821-ec1d-4082-a590-e5ed52cb0c28)
80
+
81
+ #### Drastically reduce your per app cost through ZCore’s multi-tenant approach:
82
+
83
+ ZCore redefines multi-tenancy by enabling multiple different apps to run on a single server. Say goodbye to the limitations of traditional scaling methods. With our platform, you can run multiple different applications on a single server, which helps in keeping the cost in check.
84
+
85
+ ![ZCore Scaling](https://zelthy-initium-production-static.s3.amazonaws.com/static/zelthymain/react-images/cost-effective-scaling.svg)
86
+
87
+
88
+ #### Getting Started:
89
+ - [Docker](https://docs.zelthy.com/docs/documentation/getting-started/installing-zelthy/docker)
90
+ - [Manual](https://docs.zelthy.com/docs/documentation/getting-started/installing-zelthy/manual)
91
+ - [Gitpod](https://docs.zelthy.com/docs/documentation/getting-started/installing-zelthy/gitpod)
92
+
93
+ #### Free Packages
94
+ A few essential packages are freely available. These packages enable development of a wide variety of applications and are available for installation from the App Panel.
95
+ - [Login](https://docs.zelthy.com/login)
96
+ - [Frames](https://docs.zelthy.com/frame)
97
+ - [CRUD](https://docs.zelthy.com/crud)
98
+ - [Workflow](https://docs.zelthy.com/workflow)
99
+
100
+
101
+ #### Contributing:
102
+ You can contribute to ZCore in many ways, including:
103
+ - Leave your star in this repo.
104
+ - Share with your colleagues and friends
105
+ - Share your suggestions on our slack channel
106
+ - Create issues if you find something not working as expected or if you have suggestions on enhancements.
107
+ - Provide pull requests for any open issues
108
+
109
+
110
+ #### Official Documentation: https://docs.zelthy.com/
111
+
112
+
113
+
114
+