utn-cli 1.0.0

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 (140) hide show
  1. package/commands/backend.js +282 -0
  2. package/commands/db.js +49 -0
  3. package/commands/frontend.js +225 -0
  4. package/index.js +98 -0
  5. package/package.json +27 -0
  6. package/templates/backend/InformacionDelModulo.json +21 -0
  7. package/templates/backend/NOMBRE_DEL_CANONICO_DEL_PROYECTO.rest +74 -0
  8. package/templates/backend/README.md +0 -0
  9. package/templates/backend/gitignore +3 -0
  10. package/templates/backend/index.rest +288 -0
  11. package/templates/backend/package.json +30 -0
  12. package/templates/backend/reporte.pdf +0 -0
  13. package/templates/backend/rutas/API.js +49 -0
  14. package/templates/backend/rutas/Servicio1.js +184 -0
  15. package/templates/backend/rutas/misc.js +671 -0
  16. package/templates/backend/rutas/rutas.js +11 -0
  17. package/templates/backend/server.js +79 -0
  18. package/templates/backend/servicios/API.js +101 -0
  19. package/templates/backend/servicios/InformacionDelModulo.js +70 -0
  20. package/templates/backend/servicios/Nucleo/EnvioDeCorreos.js +45 -0
  21. package/templates/backend/servicios/Nucleo/ManejadorDeErrores.js +54 -0
  22. package/templates/backend/servicios/Nucleo/Miscelaneas.js +1901 -0
  23. package/templates/backend/servicios/Nucleo/Monitoreo.js +65 -0
  24. package/templates/backend/servicios/Nucleo/db.js +78 -0
  25. package/templates/backend/servicios/Servicio1.js +118 -0
  26. package/templates/backend/variables-calidad.env +6 -0
  27. package/templates/backend/variables-desarrollo.env +6 -0
  28. package/templates/backend/variables-pruebas.env +6 -0
  29. package/templates/bd/README.md +78 -0
  30. package/templates/bd/cumulodb-scripts/gitignore +1 -0
  31. package/templates/bd/docker-compose.yml +28 -0
  32. package/templates/bd/docker-scripts/1-crear estructura.sql +29 -0
  33. package/templates/bd/docker-scripts/2-cambios estructura original.sql +1 -0
  34. package/templates/bd/docker-scripts/3-insertar datos de prueba.sql +1 -0
  35. package/templates/bd/docker-scripts/4-crear eventos y rutinas.sql +1 -0
  36. package/templates/bd/docker-scripts/5-crear vistas.sql +1 -0
  37. package/templates/bd/docker-scripts/6-calidad.sql +1 -0
  38. package/templates/bd/docker-scripts/7-pruebas.sql +1 -0
  39. package/templates/bd/docker-scripts/8-local.sql +1 -0
  40. package/templates/bd/servidores-scripts/calidad.sql +1 -0
  41. package/templates/bd/servidores-scripts/datos_iniciales_produccion.sql +1 -0
  42. package/templates/bd/servidores-scripts/produccion.sql +1 -0
  43. package/templates/bd/servidores-scripts/pruebas.sql +1 -0
  44. package/templates/frontend/.vscode/extensions.json +4 -0
  45. package/templates/frontend/.vscode/launch.json +20 -0
  46. package/templates/frontend/.vscode/tasks.json +42 -0
  47. package/templates/frontend/Dockerfile +5 -0
  48. package/templates/frontend/README.md +59 -0
  49. package/templates/frontend/angular.json +101 -0
  50. package/templates/frontend/dist/frontend/3rdpartylicenses.txt +459 -0
  51. package/templates/frontend/dist/frontend/prerendered-routes.json +3 -0
  52. package/templates/frontend/docker-compose.yml +5 -0
  53. package/templates/frontend/editorconfig +17 -0
  54. package/templates/frontend/gitignore +45 -0
  55. package/templates/frontend/nginx.conf +12 -0
  56. package/templates/frontend/package.json +46 -0
  57. package/templates/frontend/public/favicon.ico +0 -0
  58. package/templates/frontend/src/app/Componentes/Nucleo/graficos/graficos.component.css +15 -0
  59. package/templates/frontend/src/app/Componentes/Nucleo/graficos/graficos.component.html +25 -0
  60. package/templates/frontend/src/app/Componentes/Nucleo/graficos/graficos.component.ts +80 -0
  61. package/templates/frontend/src/app/Componentes/Nucleo/iframe/iframe.ts +37 -0
  62. package/templates/frontend/src/app/Componentes/Nucleo/mensaje-confirmacion/mensaje-confirmacion.component.css +5 -0
  63. package/templates/frontend/src/app/Componentes/Nucleo/mensaje-confirmacion/mensaje-confirmacion.component.html +22 -0
  64. package/templates/frontend/src/app/Componentes/Nucleo/mensaje-confirmacion/mensaje-confirmacion.ts +64 -0
  65. package/templates/frontend/src/app/Componentes/Nucleo/mensaje-confirmacion-html/mensaje-confirmacion-html.component.css +5 -0
  66. package/templates/frontend/src/app/Componentes/Nucleo/mensaje-confirmacion-html/mensaje-confirmacion-html.component.html +22 -0
  67. package/templates/frontend/src/app/Componentes/Nucleo/mensaje-confirmacion-html/mensaje-confirmacion-html.ts +64 -0
  68. package/templates/frontend/src/app/Componentes/Nucleo/mensaje-informacion/mensaje-informacion.component.css +5 -0
  69. package/templates/frontend/src/app/Componentes/Nucleo/mensaje-informacion/mensaje-informacion.component.html +11 -0
  70. package/templates/frontend/src/app/Componentes/Nucleo/mensaje-informacion/mensaje-informacion.ts +46 -0
  71. package/templates/frontend/src/app/Componentes/Nucleo/mensajes/mensajes.component.css +11 -0
  72. package/templates/frontend/src/app/Componentes/Nucleo/mensajes/mensajes.component.html +17 -0
  73. package/templates/frontend/src/app/Componentes/Nucleo/mensajes/mensajes.component.ts +43 -0
  74. package/templates/frontend/src/app/Componentes/Nucleo/reporte-de-incidencias/reporte-de-incidencias.component.css +37 -0
  75. package/templates/frontend/src/app/Componentes/Nucleo/reporte-de-incidencias/reporte-de-incidencias.component.html +35 -0
  76. package/templates/frontend/src/app/Componentes/Nucleo/reporte-de-incidencias/reporte-de-incidencias.component.ts +103 -0
  77. package/templates/frontend/src/app/Componentes/Nucleo/subir-archivo/subir-archivo.component.css +90 -0
  78. package/templates/frontend/src/app/Componentes/Nucleo/subir-archivo/subir-archivo.component.html +39 -0
  79. package/templates/frontend/src/app/Componentes/Nucleo/subir-archivo/subir-archivo.component.ts +132 -0
  80. package/templates/frontend/src/app/Componentes/Nucleo/tabla/paginador-personalizado.ts +17 -0
  81. package/templates/frontend/src/app/Componentes/Nucleo/tabla/tabla.component.css +332 -0
  82. package/templates/frontend/src/app/Componentes/Nucleo/tabla/tabla.component.html +166 -0
  83. package/templates/frontend/src/app/Componentes/Nucleo/tabla/tabla.component.ts +228 -0
  84. package/templates/frontend/src/app/Componentes/Nucleo/tarjeta/tarjeta.component.css +129 -0
  85. package/templates/frontend/src/app/Componentes/Nucleo/tarjeta/tarjeta.component.html +35 -0
  86. package/templates/frontend/src/app/Componentes/Nucleo/tarjeta/tarjeta.component.ts +46 -0
  87. package/templates/frontend/src/app/Componentes/Nucleo/tarjeta-modulo/tarjeta-modulo.component.css +92 -0
  88. package/templates/frontend/src/app/Componentes/Nucleo/tarjeta-modulo/tarjeta-modulo.component.html +17 -0
  89. package/templates/frontend/src/app/Componentes/Nucleo/tarjeta-modulo/tarjeta-modulo.component.ts +42 -0
  90. package/templates/frontend/src/app/Componentes/Nucleo/tarjeta-multiple/tarjeta-multiple.component.css +90 -0
  91. package/templates/frontend/src/app/Componentes/Nucleo/tarjeta-multiple/tarjeta-multiple.component.html +22 -0
  92. package/templates/frontend/src/app/Componentes/Nucleo/tarjeta-multiple/tarjeta-multiple.component.ts +46 -0
  93. package/templates/frontend/src/app/Componentes/Nucleo/tarjeta-reporte/tarjeta-reporte.component.css +129 -0
  94. package/templates/frontend/src/app/Componentes/Nucleo/tarjeta-reporte/tarjeta-reporte.component.html +20 -0
  95. package/templates/frontend/src/app/Componentes/Nucleo/tarjeta-reporte/tarjeta-reporte.component.ts +25 -0
  96. package/templates/frontend/src/app/Componentes/guardar-incapacidad/guardar-incapacidad.component.css +20 -0
  97. package/templates/frontend/src/app/Componentes/guardar-incapacidad/guardar-incapacidad.component.html +46 -0
  98. package/templates/frontend/src/app/Componentes/guardar-incapacidad/guardar-incapacidad.component.ts +64 -0
  99. package/templates/frontend/src/app/Paginas/Nucleo/contenedor-componentes/contenedor-componentes.component.css +142 -0
  100. package/templates/frontend/src/app/Paginas/Nucleo/contenedor-componentes/contenedor-componentes.component.html +90 -0
  101. package/templates/frontend/src/app/Paginas/Nucleo/contenedor-componentes/contenedor-componentes.component.ts +139 -0
  102. package/templates/frontend/src/app/Paginas/contenedor-principal/contenedor-principal.component.css +4 -0
  103. package/templates/frontend/src/app/Paginas/contenedor-principal/contenedor-principal.component.html +17 -0
  104. package/templates/frontend/src/app/Paginas/contenedor-principal/contenedor-principal.component.ts +36 -0
  105. package/templates/frontend/src/app/Paginas/gestion-de-reportes/gestion-de-reportes.component.css +4 -0
  106. package/templates/frontend/src/app/Paginas/gestion-de-reportes/gestion-de-reportes.component.html +6 -0
  107. package/templates/frontend/src/app/Paginas/gestion-de-reportes/gestion-de-reportes.component.ts +36 -0
  108. package/templates/frontend/src/app/Paginas/gestion-graficos/gestion-graficos.component.css +13 -0
  109. package/templates/frontend/src/app/Paginas/gestion-graficos/gestion-graficos.component.html +13 -0
  110. package/templates/frontend/src/app/Paginas/gestion-graficos/gestion-graficos.component.ts +75 -0
  111. package/templates/frontend/src/app/Paginas/gestion-iframe1/gestion-iframe1.component.css +13 -0
  112. package/templates/frontend/src/app/Paginas/gestion-iframe1/gestion-iframe1.component.html +3 -0
  113. package/templates/frontend/src/app/Paginas/gestion-iframe1/gestion-iframe1.component.ts +14 -0
  114. package/templates/frontend/src/app/Paginas/gestion-tabla/gestion-tabla.component.css +13 -0
  115. package/templates/frontend/src/app/Paginas/gestion-tabla/gestion-tabla.component.html +24 -0
  116. package/templates/frontend/src/app/Paginas/gestion-tabla/gestion-tabla.component.ts +300 -0
  117. package/templates/frontend/src/app/Paginas/gestion-tabla-XYZ/gestion-tabla-XYZ.component.css +13 -0
  118. package/templates/frontend/src/app/Paginas/gestion-tabla-XYZ/gestion-tabla-XYZ.component.html +43 -0
  119. package/templates/frontend/src/app/Paginas/gestion-tabla-XYZ/gestion-tabla-XYZ.component.ts +305 -0
  120. package/templates/frontend/src/app/Paginas/gestion-tabla-jefe/gestion-tabla-jefe.component.css +13 -0
  121. package/templates/frontend/src/app/Paginas/gestion-tabla-jefe/gestion-tabla-jefe.component.html +25 -0
  122. package/templates/frontend/src/app/Paginas/gestion-tabla-jefe/gestion-tabla-jefe.component.ts +245 -0
  123. package/templates/frontend/src/app/analytics.module.ts +45 -0
  124. package/templates/frontend/src/app/app.component.css +0 -0
  125. package/templates/frontend/src/app/app.component.html +1 -0
  126. package/templates/frontend/src/app/app.component.ts +10 -0
  127. package/templates/frontend/src/app/app.config.server.ts +14 -0
  128. package/templates/frontend/src/app/app.config.ts +27 -0
  129. package/templates/frontend/src/app/app.routes.ts +16 -0
  130. package/templates/frontend/src/app/auth.interceptor.ts +26 -0
  131. package/templates/frontend/src/app/datos-globales.service.ts +45 -0
  132. package/templates/frontend/src/assets/Puntos.svg +94 -0
  133. package/templates/frontend/src/index.html +36 -0
  134. package/templates/frontend/src/main.server.ts +7 -0
  135. package/templates/frontend/src/main.ts +6 -0
  136. package/templates/frontend/src/styles.css +14 -0
  137. package/templates/frontend/tsconfig.app.json +15 -0
  138. package/templates/frontend/tsconfig.json +27 -0
  139. package/templates/frontend/tsconfig.spec.json +15 -0
  140. package/utils/index.js +105 -0
@@ -0,0 +1,101 @@
1
+ {
2
+ "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3
+ "version": 1,
4
+ "newProjectRoot": "projects",
5
+ "projects": {
6
+ "dgdh-incapac-s-front": {
7
+ "projectType": "application",
8
+ "schematics": {},
9
+ "root": "",
10
+ "sourceRoot": "src",
11
+ "prefix": "app",
12
+ "architect": {
13
+ "build": {
14
+ "builder": "@angular-devkit/build-angular:application",
15
+ "options": {
16
+ "outputPath": "dist/frontend",
17
+ "index": "src/index.html",
18
+ "browser": "src/main.ts",
19
+ "polyfills": [
20
+ "zone.js"
21
+ ],
22
+ "tsConfig": "tsconfig.app.json",
23
+ "assets": [
24
+ {
25
+ "glob": "**/*",
26
+ "input": "public"
27
+ }
28
+ ],
29
+ "styles": [
30
+ "@angular/material/prebuilt-themes/azure-blue.css",
31
+ "src/styles.css"
32
+ ],
33
+ "scripts": []
34
+ },
35
+ "configurations": {
36
+ "production": {
37
+ "budgets": [
38
+ {
39
+ "type": "initial",
40
+ "maximumWarning": "2000kB",
41
+ "maximumError": "5MB"
42
+ },
43
+ {
44
+ "type": "anyComponentStyle",
45
+ "maximumWarning": "4kB",
46
+ "maximumError": "8kB"
47
+ }
48
+ ],
49
+ "outputHashing": "all"
50
+ },
51
+ "development": {
52
+ "optimization": false,
53
+ "extractLicenses": false,
54
+ "sourceMap": true
55
+ }
56
+ },
57
+ "defaultConfiguration": "production"
58
+ },
59
+ "serve": {
60
+ "builder": "@angular-devkit/build-angular:dev-server",
61
+ "configurations": {
62
+ "production": {
63
+ "buildTarget": "dgdh-incapac-s-front:build:production"
64
+ },
65
+ "development": {
66
+ "buildTarget": "dgdh-incapac-s-front:build:development"
67
+ }
68
+ },
69
+ "defaultConfiguration": "development"
70
+ },
71
+ "extract-i18n": {
72
+ "builder": "@angular-devkit/build-angular:extract-i18n"
73
+ },
74
+ "test": {
75
+ "builder": "@angular-devkit/build-angular:karma",
76
+ "options": {
77
+ "polyfills": [
78
+ "zone.js",
79
+ "zone.js/testing"
80
+ ],
81
+ "tsConfig": "tsconfig.spec.json",
82
+ "assets": [
83
+ {
84
+ "glob": "**/*",
85
+ "input": "public"
86
+ }
87
+ ],
88
+ "styles": [
89
+ "@angular/material/prebuilt-themes/azure-blue.css",
90
+ "src/styles.css"
91
+ ],
92
+ "scripts": []
93
+ }
94
+ }
95
+ }
96
+ }
97
+ },
98
+ "cli": {
99
+ "analytics": false
100
+ }
101
+ }
@@ -0,0 +1,459 @@
1
+
2
+ --------------------------------------------------------------------------------
3
+ Package: @angular/common
4
+ License: "MIT"
5
+
6
+ The MIT License
7
+
8
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ of this software and associated documentation files (the "Software"), to deal
12
+ in the Software without restriction, including without limitation the rights
13
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ copies of the Software, and to permit persons to whom the Software is
15
+ furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in
18
+ all copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26
+ THE SOFTWARE.
27
+
28
+ --------------------------------------------------------------------------------
29
+ Package: @angular/platform-browser
30
+ License: "MIT"
31
+
32
+ The MIT License
33
+
34
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
35
+
36
+ Permission is hereby granted, free of charge, to any person obtaining a copy
37
+ of this software and associated documentation files (the "Software"), to deal
38
+ in the Software without restriction, including without limitation the rights
39
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
40
+ copies of the Software, and to permit persons to whom the Software is
41
+ furnished to do so, subject to the following conditions:
42
+
43
+ The above copyright notice and this permission notice shall be included in
44
+ all copies or substantial portions of the Software.
45
+
46
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
47
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
48
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
49
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
50
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
51
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
52
+ THE SOFTWARE.
53
+
54
+ --------------------------------------------------------------------------------
55
+ Package: @angular/router
56
+ License: "MIT"
57
+
58
+ The MIT License
59
+
60
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
61
+
62
+ Permission is hereby granted, free of charge, to any person obtaining a copy
63
+ of this software and associated documentation files (the "Software"), to deal
64
+ in the Software without restriction, including without limitation the rights
65
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
66
+ copies of the Software, and to permit persons to whom the Software is
67
+ furnished to do so, subject to the following conditions:
68
+
69
+ The above copyright notice and this permission notice shall be included in
70
+ all copies or substantial portions of the Software.
71
+
72
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
73
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
74
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
75
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
76
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
77
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
78
+ THE SOFTWARE.
79
+
80
+ --------------------------------------------------------------------------------
81
+ Package: @angular/forms
82
+ License: "MIT"
83
+
84
+ The MIT License
85
+
86
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
87
+
88
+ Permission is hereby granted, free of charge, to any person obtaining a copy
89
+ of this software and associated documentation files (the "Software"), to deal
90
+ in the Software without restriction, including without limitation the rights
91
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
92
+ copies of the Software, and to permit persons to whom the Software is
93
+ furnished to do so, subject to the following conditions:
94
+
95
+ The above copyright notice and this permission notice shall be included in
96
+ all copies or substantial portions of the Software.
97
+
98
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
99
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
100
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
101
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
102
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
103
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
104
+ THE SOFTWARE.
105
+
106
+ --------------------------------------------------------------------------------
107
+ Package: @angular/cdk
108
+ License: "MIT"
109
+
110
+ The MIT License
111
+
112
+ Copyright (c) 2025 Google LLC.
113
+
114
+ Permission is hereby granted, free of charge, to any person obtaining a copy
115
+ of this software and associated documentation files (the "Software"), to deal
116
+ in the Software without restriction, including without limitation the rights
117
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
118
+ copies of the Software, and to permit persons to whom the Software is
119
+ furnished to do so, subject to the following conditions:
120
+
121
+ The above copyright notice and this permission notice shall be included in
122
+ all copies or substantial portions of the Software.
123
+
124
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
125
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
126
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
127
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
128
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
129
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
130
+ THE SOFTWARE.
131
+
132
+ --------------------------------------------------------------------------------
133
+ Package: @angular/material
134
+ License: "MIT"
135
+
136
+ The MIT License
137
+
138
+ Copyright (c) 2025 Google LLC.
139
+
140
+ Permission is hereby granted, free of charge, to any person obtaining a copy
141
+ of this software and associated documentation files (the "Software"), to deal
142
+ in the Software without restriction, including without limitation the rights
143
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
144
+ copies of the Software, and to permit persons to whom the Software is
145
+ furnished to do so, subject to the following conditions:
146
+
147
+ The above copyright notice and this permission notice shall be included in
148
+ all copies or substantial portions of the Software.
149
+
150
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
151
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
152
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
153
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
154
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
155
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
156
+ THE SOFTWARE.
157
+
158
+ --------------------------------------------------------------------------------
159
+ Package: @angular/animations
160
+ License: "MIT"
161
+
162
+ The MIT License
163
+
164
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
165
+
166
+ Permission is hereby granted, free of charge, to any person obtaining a copy
167
+ of this software and associated documentation files (the "Software"), to deal
168
+ in the Software without restriction, including without limitation the rights
169
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
170
+ copies of the Software, and to permit persons to whom the Software is
171
+ furnished to do so, subject to the following conditions:
172
+
173
+ The above copyright notice and this permission notice shall be included in
174
+ all copies or substantial portions of the Software.
175
+
176
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
177
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
178
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
179
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
180
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
181
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
182
+ THE SOFTWARE.
183
+
184
+ --------------------------------------------------------------------------------
185
+ Package: @angular/core
186
+ License: "MIT"
187
+
188
+ The MIT License
189
+
190
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
191
+
192
+ Permission is hereby granted, free of charge, to any person obtaining a copy
193
+ of this software and associated documentation files (the "Software"), to deal
194
+ in the Software without restriction, including without limitation the rights
195
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
196
+ copies of the Software, and to permit persons to whom the Software is
197
+ furnished to do so, subject to the following conditions:
198
+
199
+ The above copyright notice and this permission notice shall be included in
200
+ all copies or substantial portions of the Software.
201
+
202
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
203
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
204
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
205
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
206
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
207
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
208
+ THE SOFTWARE.
209
+
210
+ --------------------------------------------------------------------------------
211
+ Package: rxjs
212
+ License: "Apache-2.0"
213
+
214
+ Apache License
215
+ Version 2.0, January 2004
216
+ http://www.apache.org/licenses/
217
+
218
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
219
+
220
+ 1. Definitions.
221
+
222
+ "License" shall mean the terms and conditions for use, reproduction,
223
+ and distribution as defined by Sections 1 through 9 of this document.
224
+
225
+ "Licensor" shall mean the copyright owner or entity authorized by
226
+ the copyright owner that is granting the License.
227
+
228
+ "Legal Entity" shall mean the union of the acting entity and all
229
+ other entities that control, are controlled by, or are under common
230
+ control with that entity. For the purposes of this definition,
231
+ "control" means (i) the power, direct or indirect, to cause the
232
+ direction or management of such entity, whether by contract or
233
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
234
+ outstanding shares, or (iii) beneficial ownership of such entity.
235
+
236
+ "You" (or "Your") shall mean an individual or Legal Entity
237
+ exercising permissions granted by this License.
238
+
239
+ "Source" form shall mean the preferred form for making modifications,
240
+ including but not limited to software source code, documentation
241
+ source, and configuration files.
242
+
243
+ "Object" form shall mean any form resulting from mechanical
244
+ transformation or translation of a Source form, including but
245
+ not limited to compiled object code, generated documentation,
246
+ and conversions to other media types.
247
+
248
+ "Work" shall mean the work of authorship, whether in Source or
249
+ Object form, made available under the License, as indicated by a
250
+ copyright notice that is included in or attached to the work
251
+ (an example is provided in the Appendix below).
252
+
253
+ "Derivative Works" shall mean any work, whether in Source or Object
254
+ form, that is based on (or derived from) the Work and for which the
255
+ editorial revisions, annotations, elaborations, or other modifications
256
+ represent, as a whole, an original work of authorship. For the purposes
257
+ of this License, Derivative Works shall not include works that remain
258
+ separable from, or merely link (or bind by name) to the interfaces of,
259
+ the Work and Derivative Works thereof.
260
+
261
+ "Contribution" shall mean any work of authorship, including
262
+ the original version of the Work and any modifications or additions
263
+ to that Work or Derivative Works thereof, that is intentionally
264
+ submitted to Licensor for inclusion in the Work by the copyright owner
265
+ or by an individual or Legal Entity authorized to submit on behalf of
266
+ the copyright owner. For the purposes of this definition, "submitted"
267
+ means any form of electronic, verbal, or written communication sent
268
+ to the Licensor or its representatives, including but not limited to
269
+ communication on electronic mailing lists, source code control systems,
270
+ and issue tracking systems that are managed by, or on behalf of, the
271
+ Licensor for the purpose of discussing and improving the Work, but
272
+ excluding communication that is conspicuously marked or otherwise
273
+ designated in writing by the copyright owner as "Not a Contribution."
274
+
275
+ "Contributor" shall mean Licensor and any individual or Legal Entity
276
+ on behalf of whom a Contribution has been received by Licensor and
277
+ subsequently incorporated within the Work.
278
+
279
+ 2. Grant of Copyright License. Subject to the terms and conditions of
280
+ this License, each Contributor hereby grants to You a perpetual,
281
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
282
+ copyright license to reproduce, prepare Derivative Works of,
283
+ publicly display, publicly perform, sublicense, and distribute the
284
+ Work and such Derivative Works in Source or Object form.
285
+
286
+ 3. Grant of Patent License. Subject to the terms and conditions of
287
+ this License, each Contributor hereby grants to You a perpetual,
288
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
289
+ (except as stated in this section) patent license to make, have made,
290
+ use, offer to sell, sell, import, and otherwise transfer the Work,
291
+ where such license applies only to those patent claims licensable
292
+ by such Contributor that are necessarily infringed by their
293
+ Contribution(s) alone or by combination of their Contribution(s)
294
+ with the Work to which such Contribution(s) was submitted. If You
295
+ institute patent litigation against any entity (including a
296
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
297
+ or a Contribution incorporated within the Work constitutes direct
298
+ or contributory patent infringement, then any patent licenses
299
+ granted to You under this License for that Work shall terminate
300
+ as of the date such litigation is filed.
301
+
302
+ 4. Redistribution. You may reproduce and distribute copies of the
303
+ Work or Derivative Works thereof in any medium, with or without
304
+ modifications, and in Source or Object form, provided that You
305
+ meet the following conditions:
306
+
307
+ (a) You must give any other recipients of the Work or
308
+ Derivative Works a copy of this License; and
309
+
310
+ (b) You must cause any modified files to carry prominent notices
311
+ stating that You changed the files; and
312
+
313
+ (c) You must retain, in the Source form of any Derivative Works
314
+ that You distribute, all copyright, patent, trademark, and
315
+ attribution notices from the Source form of the Work,
316
+ excluding those notices that do not pertain to any part of
317
+ the Derivative Works; and
318
+
319
+ (d) If the Work includes a "NOTICE" text file as part of its
320
+ distribution, then any Derivative Works that You distribute must
321
+ include a readable copy of the attribution notices contained
322
+ within such NOTICE file, excluding those notices that do not
323
+ pertain to any part of the Derivative Works, in at least one
324
+ of the following places: within a NOTICE text file distributed
325
+ as part of the Derivative Works; within the Source form or
326
+ documentation, if provided along with the Derivative Works; or,
327
+ within a display generated by the Derivative Works, if and
328
+ wherever such third-party notices normally appear. The contents
329
+ of the NOTICE file are for informational purposes only and
330
+ do not modify the License. You may add Your own attribution
331
+ notices within Derivative Works that You distribute, alongside
332
+ or as an addendum to the NOTICE text from the Work, provided
333
+ that such additional attribution notices cannot be construed
334
+ as modifying the License.
335
+
336
+ You may add Your own copyright statement to Your modifications and
337
+ may provide additional or different license terms and conditions
338
+ for use, reproduction, or distribution of Your modifications, or
339
+ for any such Derivative Works as a whole, provided Your use,
340
+ reproduction, and distribution of the Work otherwise complies with
341
+ the conditions stated in this License.
342
+
343
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
344
+ any Contribution intentionally submitted for inclusion in the Work
345
+ by You to the Licensor shall be under the terms and conditions of
346
+ this License, without any additional terms or conditions.
347
+ Notwithstanding the above, nothing herein shall supersede or modify
348
+ the terms of any separate license agreement you may have executed
349
+ with Licensor regarding such Contributions.
350
+
351
+ 6. Trademarks. This License does not grant permission to use the trade
352
+ names, trademarks, service marks, or product names of the Licensor,
353
+ except as required for reasonable and customary use in describing the
354
+ origin of the Work and reproducing the content of the NOTICE file.
355
+
356
+ 7. Disclaimer of Warranty. Unless required by applicable law or
357
+ agreed to in writing, Licensor provides the Work (and each
358
+ Contributor provides its Contributions) on an "AS IS" BASIS,
359
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
360
+ implied, including, without limitation, any warranties or conditions
361
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
362
+ PARTICULAR PURPOSE. You are solely responsible for determining the
363
+ appropriateness of using or redistributing the Work and assume any
364
+ risks associated with Your exercise of permissions under this License.
365
+
366
+ 8. Limitation of Liability. In no event and under no legal theory,
367
+ whether in tort (including negligence), contract, or otherwise,
368
+ unless required by applicable law (such as deliberate and grossly
369
+ negligent acts) or agreed to in writing, shall any Contributor be
370
+ liable to You for damages, including any direct, indirect, special,
371
+ incidental, or consequential damages of any character arising as a
372
+ result of this License or out of the use or inability to use the
373
+ Work (including but not limited to damages for loss of goodwill,
374
+ work stoppage, computer failure or malfunction, or any and all
375
+ other commercial damages or losses), even if such Contributor
376
+ has been advised of the possibility of such damages.
377
+
378
+ 9. Accepting Warranty or Additional Liability. While redistributing
379
+ the Work or Derivative Works thereof, You may choose to offer,
380
+ and charge a fee for, acceptance of support, warranty, indemnity,
381
+ or other liability obligations and/or rights consistent with this
382
+ License. However, in accepting such obligations, You may act only
383
+ on Your own behalf and on Your sole responsibility, not on behalf
384
+ of any other Contributor, and only if You agree to indemnify,
385
+ defend, and hold each Contributor harmless for any liability
386
+ incurred by, or claims asserted against, such Contributor by reason
387
+ of your accepting any such warranty or additional liability.
388
+
389
+ END OF TERMS AND CONDITIONS
390
+
391
+ APPENDIX: How to apply the Apache License to your work.
392
+
393
+ To apply the Apache License to your work, attach the following
394
+ boilerplate notice, with the fields enclosed by brackets "[]"
395
+ replaced with your own identifying information. (Don't include
396
+ the brackets!) The text should be enclosed in the appropriate
397
+ comment syntax for the file format. We also recommend that a
398
+ file or class name and description of purpose be included on the
399
+ same "printed page" as the copyright notice for easier
400
+ identification within third-party archives.
401
+
402
+ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors
403
+
404
+ Licensed under the Apache License, Version 2.0 (the "License");
405
+ you may not use this file except in compliance with the License.
406
+ You may obtain a copy of the License at
407
+
408
+ http://www.apache.org/licenses/LICENSE-2.0
409
+
410
+ Unless required by applicable law or agreed to in writing, software
411
+ distributed under the License is distributed on an "AS IS" BASIS,
412
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
413
+ See the License for the specific language governing permissions and
414
+ limitations under the License.
415
+
416
+
417
+ --------------------------------------------------------------------------------
418
+ Package: tslib
419
+ License: "0BSD"
420
+
421
+ Copyright (c) Microsoft Corporation.
422
+
423
+ Permission to use, copy, modify, and/or distribute this software for any
424
+ purpose with or without fee is hereby granted.
425
+
426
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
427
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
428
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
429
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
430
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
431
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
432
+ PERFORMANCE OF THIS SOFTWARE.
433
+ --------------------------------------------------------------------------------
434
+ Package: zone.js
435
+ License: "MIT"
436
+
437
+ The MIT License
438
+
439
+ Copyright (c) 2010-2024 Google LLC. https://angular.io/license
440
+
441
+ Permission is hereby granted, free of charge, to any person obtaining a copy
442
+ of this software and associated documentation files (the "Software"), to deal
443
+ in the Software without restriction, including without limitation the rights
444
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
445
+ copies of the Software, and to permit persons to whom the Software is
446
+ furnished to do so, subject to the following conditions:
447
+
448
+ The above copyright notice and this permission notice shall be included in
449
+ all copies or substantial portions of the Software.
450
+
451
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
452
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
453
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
454
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
455
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
456
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
457
+ THE SOFTWARE.
458
+
459
+ --------------------------------------------------------------------------------
@@ -0,0 +1,3 @@
1
+ {
2
+ "routes": {}
3
+ }
@@ -0,0 +1,5 @@
1
+ services:
2
+ frontend:
3
+ build: .
4
+ ports:
5
+ - "8000:80"
@@ -0,0 +1,17 @@
1
+ # Editor configuration, see https://editorconfig.org
2
+ root = true
3
+
4
+ [*]
5
+ charset = utf-8
6
+ indent_style = space
7
+ indent_size = 2
8
+ insert_final_newline = true
9
+ trim_trailing_whitespace = true
10
+
11
+ [*.ts]
12
+ quote_type = single
13
+ ij_typescript_use_double_quotes = false
14
+
15
+ [*.md]
16
+ max_line_length = off
17
+ trim_trailing_whitespace = false
@@ -0,0 +1,45 @@
1
+ # See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
2
+
3
+ GEMINI.md
4
+
5
+ # Compiled output
6
+ # /dist
7
+ package-lock.json
8
+ /tmp
9
+ /out-tsc
10
+ /bazel-out
11
+
12
+ # Node
13
+ /node_modules
14
+ npm-debug.log
15
+ yarn-error.log
16
+
17
+ # IDEs and editors
18
+ .idea/
19
+ .project
20
+ .classpath
21
+ .c9/
22
+ *.launch
23
+ .settings/
24
+ *.sublime-workspace
25
+
26
+ # Visual Studio Code
27
+ .vscode/*
28
+ !.vscode/settings.json
29
+ !.vscode/tasks.json
30
+ !.vscode/launch.json
31
+ !.vscode/extensions.json
32
+ .history/*
33
+
34
+ # Miscellaneous
35
+ /.angular/cache
36
+ .sass-cache/
37
+ /connect.lock
38
+ /coverage
39
+ /libpeerconnection.log
40
+ testem.log
41
+ /typings
42
+
43
+ # System files
44
+ .DS_Store
45
+ Thumbs.db
@@ -0,0 +1,12 @@
1
+ server {
2
+ listen 80;
3
+ server_name localhost;
4
+ root /usr/share/nginx/html/browser;
5
+ index index.html;
6
+ location / {
7
+ # add_header X-Frame-Options "SAMEORIGIN";
8
+ # add_header Content-Security-Policy "frame-ancestors 'self'";
9
+ try_files $uri /index.html;
10
+ }
11
+ error_page 404 /index.html;
12
+ }