@phila/cli 0.0.1

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 (278) hide show
  1. package/dist/commands/config.d.ts +30 -0
  2. package/dist/commands/config.d.ts.map +1 -0
  3. package/dist/commands/config.js +135 -0
  4. package/dist/commands/config.js.map +1 -0
  5. package/dist/commands/deploy.d.ts +2 -0
  6. package/dist/commands/deploy.d.ts.map +1 -0
  7. package/dist/commands/deploy.js +224 -0
  8. package/dist/commands/deploy.js.map +1 -0
  9. package/dist/commands/destroy.d.ts +3 -0
  10. package/dist/commands/destroy.d.ts.map +1 -0
  11. package/dist/commands/destroy.js +110 -0
  12. package/dist/commands/destroy.js.map +1 -0
  13. package/dist/commands/init.d.ts +25 -0
  14. package/dist/commands/init.d.ts.map +1 -0
  15. package/dist/commands/init.js +513 -0
  16. package/dist/commands/init.js.map +1 -0
  17. package/dist/commands/map.d.ts +8 -0
  18. package/dist/commands/map.d.ts.map +1 -0
  19. package/dist/commands/map.js +186 -0
  20. package/dist/commands/map.js.map +1 -0
  21. package/dist/commands/ship.d.ts +20 -0
  22. package/dist/commands/ship.d.ts.map +1 -0
  23. package/dist/commands/ship.js +445 -0
  24. package/dist/commands/ship.js.map +1 -0
  25. package/dist/commands/templates.d.ts +3 -0
  26. package/dist/commands/templates.d.ts.map +1 -0
  27. package/dist/commands/templates.js +120 -0
  28. package/dist/commands/templates.js.map +1 -0
  29. package/dist/index.d.ts +3 -0
  30. package/dist/index.d.ts.map +1 -0
  31. package/dist/index.js +82 -0
  32. package/dist/index.js.map +1 -0
  33. package/dist/templates/_shared/city.config.json.tmpl +24 -0
  34. package/dist/templates/_shared/dotnet-api/Api.csproj +17 -0
  35. package/dist/templates/_shared/dotnet-api/Program.cs +58 -0
  36. package/dist/templates/_shared/dotnet-api/aws-lambda-tools-defaults.json +10 -0
  37. package/dist/templates/_shared/dotnet-api/obj/Api.csproj.nuget.dgspec.json +80 -0
  38. package/dist/templates/_shared/dotnet-api/obj/Api.csproj.nuget.g.props +15 -0
  39. package/dist/templates/_shared/dotnet-api/obj/Api.csproj.nuget.g.targets +2 -0
  40. package/dist/templates/_shared/dotnet-api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +4 -0
  41. package/dist/templates/_shared/dotnet-api/obj/Debug/net8.0/Api.AssemblyInfo.cs +22 -0
  42. package/dist/templates/_shared/dotnet-api/obj/Debug/net8.0/Api.AssemblyInfoInputs.cache +1 -0
  43. package/dist/templates/_shared/dotnet-api/obj/Debug/net8.0/Api.GeneratedMSBuildEditorConfig.editorconfig +19 -0
  44. package/dist/templates/_shared/dotnet-api/obj/Debug/net8.0/Api.GlobalUsings.g.cs +17 -0
  45. package/dist/templates/_shared/dotnet-api/obj/Debug/net8.0/Api.assets.cache +0 -0
  46. package/dist/templates/_shared/dotnet-api/obj/Debug/net8.0/Api.csproj.AssemblyReference.cache +0 -0
  47. package/dist/templates/_shared/dotnet-api/obj/project.assets.json +708 -0
  48. package/dist/templates/_shared/dotnet-api/obj/project.nuget.cache +35 -0
  49. package/dist/templates/_shared/dotnet-api-postgres/Api.csproj +19 -0
  50. package/dist/templates/_shared/dotnet-api-postgres/Program.cs +167 -0
  51. package/dist/templates/_shared/dotnet-api-postgres/aws-lambda-tools-defaults.json +10 -0
  52. package/dist/templates/_shared/dotnet-api-postgres/obj/Api.csproj.nuget.dgspec.json +88 -0
  53. package/dist/templates/_shared/dotnet-api-postgres/obj/Api.csproj.nuget.g.props +15 -0
  54. package/dist/templates/_shared/dotnet-api-postgres/obj/Api.csproj.nuget.g.targets +2 -0
  55. package/dist/templates/_shared/dotnet-api-postgres/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +4 -0
  56. package/dist/templates/_shared/dotnet-api-postgres/obj/Debug/net8.0/Api.AssemblyInfo.cs +22 -0
  57. package/dist/templates/_shared/dotnet-api-postgres/obj/Debug/net8.0/Api.AssemblyInfoInputs.cache +1 -0
  58. package/dist/templates/_shared/dotnet-api-postgres/obj/Debug/net8.0/Api.GeneratedMSBuildEditorConfig.editorconfig +19 -0
  59. package/dist/templates/_shared/dotnet-api-postgres/obj/Debug/net8.0/Api.GlobalUsings.g.cs +17 -0
  60. package/dist/templates/_shared/dotnet-api-postgres/obj/Debug/net8.0/Api.assets.cache +0 -0
  61. package/dist/templates/_shared/dotnet-api-postgres/obj/project.assets.json +106 -0
  62. package/dist/templates/_shared/dotnet-api-postgres/obj/project.nuget.cache +15 -0
  63. package/dist/templates/_shared/nuxt-frontend/app.vue +3 -0
  64. package/dist/templates/_shared/nuxt-frontend/nuxt.config.ts +25 -0
  65. package/dist/templates/_shared/nuxt-frontend/package.json.tmpl +19 -0
  66. package/dist/templates/_shared/nuxt-frontend/pages/index.vue +6 -0
  67. package/dist/templates/_shared/nuxt-frontend/public/.gitkeep +0 -0
  68. package/dist/templates/_shared/nuxt-frontend/tsconfig.json +3 -0
  69. package/dist/templates/_shared/webapp-cdk-package.json.tmpl +23 -0
  70. package/dist/templates/_shared/webapp-frontend/app.vue +3 -0
  71. package/dist/templates/_shared/webapp-frontend/nuxt.config.ts +25 -0
  72. package/dist/templates/_shared/webapp-frontend/package.json.tmpl +19 -0
  73. package/dist/templates/_shared/webapp-frontend/pages/index.vue +7 -0
  74. package/dist/templates/_shared/webapp-frontend/public/.gitkeep +0 -0
  75. package/dist/templates/_shared/webapp-frontend/tsconfig.json +3 -0
  76. package/dist/templates/lambda-api-nodejs/README.md.tmpl +203 -0
  77. package/dist/templates/lambda-api-nodejs/apps/__lambdaName__/index.ts +89 -0
  78. package/dist/templates/lambda-api-nodejs/apps/__lambdaName__/package.json +17 -0
  79. package/dist/templates/lambda-api-nodejs/apps/__lambdaName__/tsconfig.json +8 -0
  80. package/dist/templates/lambda-api-nodejs/cdk/app.ts.tmpl +53 -0
  81. package/dist/templates/lambda-api-nodejs/cdk/cdk.json +68 -0
  82. package/dist/templates/lambda-api-nodejs/cdk/package.json +23 -0
  83. package/dist/templates/lambda-api-nodejs/cdk/tsconfig.json +9 -0
  84. package/dist/templates/lambda-api-nodejs/package.json.tmpl +20 -0
  85. package/dist/templates/lambda-api-nodejs/tsconfig.json +27 -0
  86. package/dist/templates/lambda-dynamo-api/README.md.tmpl +184 -0
  87. package/dist/templates/lambda-dynamo-api/apps/__lambdaName__/index.ts +109 -0
  88. package/dist/templates/lambda-dynamo-api/apps/__lambdaName__/package.json +19 -0
  89. package/dist/templates/lambda-dynamo-api/apps/__lambdaName__/tsconfig.json +24 -0
  90. package/dist/templates/lambda-dynamo-api/cdk/app.ts.tmpl +59 -0
  91. package/dist/templates/lambda-dynamo-api/cdk/cdk.json +73 -0
  92. package/dist/templates/lambda-dynamo-api/cdk/package.json +23 -0
  93. package/dist/templates/lambda-dynamo-api/cdk/tsconfig.json +14 -0
  94. package/dist/templates/lambda-dynamo-api/package.json.tmpl +20 -0
  95. package/dist/templates/lambda-dynamo-api/tsconfig.json +27 -0
  96. package/dist/templates/lambda-postgres-api/README.md.tmpl +234 -0
  97. package/dist/templates/lambda-postgres-api/apps/__lambdaName__/index.ts +76 -0
  98. package/dist/templates/lambda-postgres-api/apps/__lambdaName__/package.json +18 -0
  99. package/dist/templates/lambda-postgres-api/apps/__lambdaName__/tsconfig.json +26 -0
  100. package/dist/templates/lambda-postgres-api/cdk/app.ts.tmpl +55 -0
  101. package/dist/templates/lambda-postgres-api/cdk/cdk.json +4 -0
  102. package/dist/templates/lambda-postgres-api/cdk/package.json +23 -0
  103. package/dist/templates/lambda-postgres-api/cdk/tsconfig.json +25 -0
  104. package/dist/templates/lambda-postgres-api/package.json.tmpl +20 -0
  105. package/dist/templates/lambda-postgres-api/tsconfig.json +11 -0
  106. package/dist/templates/static-site/README.md.tmpl +72 -0
  107. package/dist/templates/static-site/cdk/app.ts.tmpl +50 -0
  108. package/dist/templates/static-site/cdk/cdk.json +68 -0
  109. package/dist/templates/static-site/cdk/package.json +23 -0
  110. package/dist/templates/static-site/cdk/tsconfig.json +9 -0
  111. package/dist/templates/static-site/frontend/.gitkeep +0 -0
  112. package/dist/templates/static-site/frontend/README.md +41 -0
  113. package/dist/templates/static-site/frontend/package.json +9 -0
  114. package/dist/templates/static-site/package.json.tmpl +19 -0
  115. package/dist/templates/static-site/tsconfig.json +27 -0
  116. package/dist/templates/webapp-ecs-dotnet/README.md.tmpl +213 -0
  117. package/dist/templates/webapp-ecs-dotnet/apps/api/Api.csproj +12 -0
  118. package/dist/templates/webapp-ecs-dotnet/apps/api/Dockerfile +30 -0
  119. package/dist/templates/webapp-ecs-dotnet/apps/api/Program.cs +85 -0
  120. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/Api.csproj.nuget.dgspec.json +70 -0
  121. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/Api.csproj.nuget.g.props +15 -0
  122. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/Api.csproj.nuget.g.targets +2 -0
  123. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +4 -0
  124. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfo.cs +22 -0
  125. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfoInputs.cache +1 -0
  126. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/Debug/net8.0/Api.GeneratedMSBuildEditorConfig.editorconfig +19 -0
  127. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/Debug/net8.0/Api.GlobalUsings.g.cs +17 -0
  128. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/Debug/net8.0/Api.assets.cache +0 -0
  129. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/project.assets.json +75 -0
  130. package/dist/templates/webapp-ecs-dotnet/apps/api/obj/project.nuget.cache +8 -0
  131. package/dist/templates/webapp-ecs-dotnet/cdk/app.ts.tmpl +60 -0
  132. package/dist/templates/webapp-ecs-dotnet/cdk/cdk.json +38 -0
  133. package/dist/templates/webapp-ecs-dotnet/cdk/tsconfig.json +25 -0
  134. package/dist/templates/webapp-ecs-dotnet/package.json.tmpl +23 -0
  135. package/dist/templates/webapp-ecs-dotnet/tsconfig.json +26 -0
  136. package/dist/templates/webapp-ecs-node/README.md.tmpl +207 -0
  137. package/dist/templates/webapp-ecs-node/apps/api/Dockerfile +33 -0
  138. package/dist/templates/webapp-ecs-node/apps/api/index.ts +74 -0
  139. package/dist/templates/webapp-ecs-node/apps/api/package.json +22 -0
  140. package/dist/templates/webapp-ecs-node/apps/api/tsconfig.json +18 -0
  141. package/dist/templates/webapp-ecs-node/cdk/app.ts.tmpl +60 -0
  142. package/dist/templates/webapp-ecs-node/cdk/cdk.json +38 -0
  143. package/dist/templates/webapp-ecs-node/cdk/tsconfig.json +25 -0
  144. package/dist/templates/webapp-ecs-node/package.json.tmpl +25 -0
  145. package/dist/templates/webapp-ecs-node/tsconfig.json +26 -0
  146. package/dist/templates/webapp-ecs-postgres-dotnet/README.md.tmpl +271 -0
  147. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/Api.csproj +17 -0
  148. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/Dockerfile +30 -0
  149. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/Program.cs +194 -0
  150. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Api.csproj.nuget.dgspec.json +80 -0
  151. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Api.csproj.nuget.g.props +19 -0
  152. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Api.csproj.nuget.g.targets +6 -0
  153. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +4 -0
  154. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfo.cs +22 -0
  155. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfoInputs.cache +1 -0
  156. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.GeneratedMSBuildEditorConfig.editorconfig +19 -0
  157. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.GlobalUsings.g.cs +17 -0
  158. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.assets.cache +0 -0
  159. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.csproj.AssemblyReference.cache +0 -0
  160. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/project.assets.json +395 -0
  161. package/dist/templates/webapp-ecs-postgres-dotnet/apps/api/obj/project.nuget.cache +49 -0
  162. package/dist/templates/webapp-ecs-postgres-dotnet/cdk/app.ts.tmpl +62 -0
  163. package/dist/templates/webapp-ecs-postgres-dotnet/cdk/cdk.json +38 -0
  164. package/dist/templates/webapp-ecs-postgres-dotnet/cdk/tsconfig.json +25 -0
  165. package/dist/templates/webapp-ecs-postgres-dotnet/package.json.tmpl +23 -0
  166. package/dist/templates/webapp-ecs-postgres-dotnet/tsconfig.json +26 -0
  167. package/dist/templates/webapp-ecs-postgres-node/README.md.tmpl +261 -0
  168. package/dist/templates/webapp-ecs-postgres-node/apps/api/Dockerfile +33 -0
  169. package/dist/templates/webapp-ecs-postgres-node/apps/api/index.ts +160 -0
  170. package/dist/templates/webapp-ecs-postgres-node/apps/api/package.json +25 -0
  171. package/dist/templates/webapp-ecs-postgres-node/apps/api/tsconfig.json +18 -0
  172. package/dist/templates/webapp-ecs-postgres-node/cdk/app.ts.tmpl +62 -0
  173. package/dist/templates/webapp-ecs-postgres-node/cdk/cdk.json +38 -0
  174. package/dist/templates/webapp-ecs-postgres-node/cdk/tsconfig.json +25 -0
  175. package/dist/templates/webapp-ecs-postgres-node/package.json.tmpl +25 -0
  176. package/dist/templates/webapp-ecs-postgres-node/tsconfig.json +26 -0
  177. package/dist/templates/webapp-lambda-dotnet/README.md.tmpl +188 -0
  178. package/dist/templates/webapp-lambda-dotnet/apps/api/Api.csproj +17 -0
  179. package/dist/templates/webapp-lambda-dotnet/apps/api/Program.cs +58 -0
  180. package/dist/templates/webapp-lambda-dotnet/apps/api/aws-lambda-tools-defaults.json +10 -0
  181. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Api.csproj.nuget.dgspec.json +80 -0
  182. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Api.csproj.nuget.g.props +15 -0
  183. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Api.csproj.nuget.g.targets +2 -0
  184. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +4 -0
  185. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfo.cs +22 -0
  186. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfoInputs.cache +1 -0
  187. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Debug/net8.0/Api.GeneratedMSBuildEditorConfig.editorconfig +19 -0
  188. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Debug/net8.0/Api.GlobalUsings.g.cs +17 -0
  189. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Debug/net8.0/Api.assets.cache +0 -0
  190. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/Debug/net8.0/Api.csproj.AssemblyReference.cache +0 -0
  191. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/project.assets.json +708 -0
  192. package/dist/templates/webapp-lambda-dotnet/apps/api/obj/project.nuget.cache +35 -0
  193. package/dist/templates/webapp-lambda-dotnet/cdk/app.ts.tmpl +59 -0
  194. package/dist/templates/webapp-lambda-dotnet/cdk/cdk.json +68 -0
  195. package/dist/templates/webapp-lambda-dotnet/cdk/tsconfig.json +9 -0
  196. package/dist/templates/webapp-lambda-dotnet/package.json.tmpl +23 -0
  197. package/dist/templates/webapp-lambda-dotnet/tsconfig.json +27 -0
  198. package/dist/templates/webapp-lambda-dynamo-dotnet/README.md.tmpl +223 -0
  199. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/Api.csproj +18 -0
  200. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/Program.cs +155 -0
  201. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/aws-lambda-tools-defaults.json +10 -0
  202. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Api.csproj.nuget.dgspec.json +84 -0
  203. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Api.csproj.nuget.g.props +19 -0
  204. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Api.csproj.nuget.g.targets +2 -0
  205. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +4 -0
  206. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfo.cs +22 -0
  207. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfoInputs.cache +1 -0
  208. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Debug/net8.0/Api.GeneratedMSBuildEditorConfig.editorconfig +19 -0
  209. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Debug/net8.0/Api.GlobalUsings.g.cs +17 -0
  210. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Debug/net8.0/Api.assets.cache +0 -0
  211. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/Debug/net8.0/Api.csproj.AssemblyReference.cache +0 -0
  212. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/project.assets.json +989 -0
  213. package/dist/templates/webapp-lambda-dynamo-dotnet/apps/api/obj/project.nuget.cache +223 -0
  214. package/dist/templates/webapp-lambda-dynamo-dotnet/cdk/app.ts.tmpl +65 -0
  215. package/dist/templates/webapp-lambda-dynamo-dotnet/cdk/cdk.json +68 -0
  216. package/dist/templates/webapp-lambda-dynamo-dotnet/cdk/tsconfig.json +9 -0
  217. package/dist/templates/webapp-lambda-dynamo-dotnet/package.json.tmpl +23 -0
  218. package/dist/templates/webapp-lambda-dynamo-dotnet/tsconfig.json +27 -0
  219. package/dist/templates/webapp-lambda-dynamo-node/README.md.tmpl +189 -0
  220. package/dist/templates/webapp-lambda-dynamo-node/apps/api/index.ts +109 -0
  221. package/dist/templates/webapp-lambda-dynamo-node/apps/api/package.json +19 -0
  222. package/dist/templates/webapp-lambda-dynamo-node/apps/api/tsconfig.json +8 -0
  223. package/dist/templates/webapp-lambda-dynamo-node/cdk/app.ts.tmpl +65 -0
  224. package/dist/templates/webapp-lambda-dynamo-node/cdk/cdk.json +68 -0
  225. package/dist/templates/webapp-lambda-dynamo-node/cdk/tsconfig.json +9 -0
  226. package/dist/templates/webapp-lambda-dynamo-node/package.json.tmpl +24 -0
  227. package/dist/templates/webapp-lambda-dynamo-node/tsconfig.json +27 -0
  228. package/dist/templates/webapp-lambda-node/README.md.tmpl +179 -0
  229. package/dist/templates/webapp-lambda-node/apps/api/index.ts +100 -0
  230. package/dist/templates/webapp-lambda-node/apps/api/package.json +17 -0
  231. package/dist/templates/webapp-lambda-node/apps/api/tsconfig.json +8 -0
  232. package/dist/templates/webapp-lambda-node/cdk/app.ts.tmpl +59 -0
  233. package/dist/templates/webapp-lambda-node/cdk/cdk.json +68 -0
  234. package/dist/templates/webapp-lambda-node/cdk/tsconfig.json +9 -0
  235. package/dist/templates/webapp-lambda-node/package.json.tmpl +24 -0
  236. package/dist/templates/webapp-lambda-node/tsconfig.json +27 -0
  237. package/dist/templates/webapp-lambda-postgres-dotnet/README.md.tmpl +240 -0
  238. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/Api.csproj +19 -0
  239. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/Program.cs +167 -0
  240. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/aws-lambda-tools-defaults.json +10 -0
  241. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/Api.csproj.nuget.dgspec.json +88 -0
  242. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/Api.csproj.nuget.g.props +15 -0
  243. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/Api.csproj.nuget.g.targets +2 -0
  244. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +4 -0
  245. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfo.cs +22 -0
  246. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.AssemblyInfoInputs.cache +1 -0
  247. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.GeneratedMSBuildEditorConfig.editorconfig +19 -0
  248. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.GlobalUsings.g.cs +17 -0
  249. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/Debug/net8.0/Api.assets.cache +0 -0
  250. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/project.assets.json +106 -0
  251. package/dist/templates/webapp-lambda-postgres-dotnet/apps/api/obj/project.nuget.cache +15 -0
  252. package/dist/templates/webapp-lambda-postgres-dotnet/cdk/app.ts.tmpl +61 -0
  253. package/dist/templates/webapp-lambda-postgres-dotnet/cdk/cdk.json +68 -0
  254. package/dist/templates/webapp-lambda-postgres-dotnet/cdk/tsconfig.json +9 -0
  255. package/dist/templates/webapp-lambda-postgres-dotnet/package.json.tmpl +23 -0
  256. package/dist/templates/webapp-lambda-postgres-dotnet/tsconfig.json +27 -0
  257. package/dist/templates/webapp-lambda-postgres-node/README.md.tmpl +190 -0
  258. package/dist/templates/webapp-lambda-postgres-node/apps/api/index.ts +76 -0
  259. package/dist/templates/webapp-lambda-postgres-node/apps/api/package.json +18 -0
  260. package/dist/templates/webapp-lambda-postgres-node/apps/api/tsconfig.json +8 -0
  261. package/dist/templates/webapp-lambda-postgres-node/cdk/app.ts.tmpl +61 -0
  262. package/dist/templates/webapp-lambda-postgres-node/cdk/cdk.json +68 -0
  263. package/dist/templates/webapp-lambda-postgres-node/cdk/tsconfig.json +9 -0
  264. package/dist/templates/webapp-lambda-postgres-node/package.json.tmpl +24 -0
  265. package/dist/templates/webapp-lambda-postgres-node/tsconfig.json +27 -0
  266. package/dist/utils/aws.d.ts +4 -0
  267. package/dist/utils/aws.d.ts.map +1 -0
  268. package/dist/utils/aws.js +90 -0
  269. package/dist/utils/aws.js.map +1 -0
  270. package/dist/utils/dependencies.d.ts +27 -0
  271. package/dist/utils/dependencies.d.ts.map +1 -0
  272. package/dist/utils/dependencies.js +267 -0
  273. package/dist/utils/dependencies.js.map +1 -0
  274. package/dist/utils/template.d.ts +23 -0
  275. package/dist/utils/template.d.ts.map +1 -0
  276. package/dist/utils/template.js +115 -0
  277. package/dist/utils/template.js.map +1 -0
  278. package/package.json +48 -0
@@ -0,0 +1,80 @@
1
+ {
2
+ "format": 1,
3
+ "restore": {
4
+ "/Users/alejandro.lopez/code/phila-ctl/templates/webapp-ecs-postgres-dotnet/apps/api/Api.csproj": {}
5
+ },
6
+ "projects": {
7
+ "/Users/alejandro.lopez/code/phila-ctl/templates/webapp-ecs-postgres-dotnet/apps/api/Api.csproj": {
8
+ "version": "1.0.0",
9
+ "restore": {
10
+ "projectUniqueName": "/Users/alejandro.lopez/code/phila-ctl/templates/webapp-ecs-postgres-dotnet/apps/api/Api.csproj",
11
+ "projectName": "Api",
12
+ "projectPath": "/Users/alejandro.lopez/code/phila-ctl/templates/webapp-ecs-postgres-dotnet/apps/api/Api.csproj",
13
+ "packagesPath": "/Users/alejandro.lopez/.nuget/packages/",
14
+ "outputPath": "/Users/alejandro.lopez/code/phila-ctl/templates/webapp-ecs-postgres-dotnet/apps/api/obj/",
15
+ "projectStyle": "PackageReference",
16
+ "configFilePaths": [
17
+ "/Users/alejandro.lopez/.nuget/NuGet/NuGet.Config"
18
+ ],
19
+ "originalTargetFrameworks": [
20
+ "net8.0"
21
+ ],
22
+ "sources": {
23
+ "https://api.nuget.org/v3/index.json": {},
24
+ "https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json": {}
25
+ },
26
+ "frameworks": {
27
+ "net8.0": {
28
+ "targetAlias": "net8.0",
29
+ "projectReferences": {}
30
+ }
31
+ },
32
+ "warningProperties": {
33
+ "warnAsError": [
34
+ "NU1605"
35
+ ]
36
+ },
37
+ "restoreAuditProperties": {
38
+ "enableAudit": "true",
39
+ "auditLevel": "low",
40
+ "auditMode": "direct"
41
+ }
42
+ },
43
+ "frameworks": {
44
+ "net8.0": {
45
+ "targetAlias": "net8.0",
46
+ "dependencies": {
47
+ "AWSSDK.SecretsManager": {
48
+ "target": "Package",
49
+ "version": "[3.7.400, )"
50
+ },
51
+ "Npgsql": {
52
+ "target": "Package",
53
+ "version": "[8.0.0, )"
54
+ }
55
+ },
56
+ "imports": [
57
+ "net461",
58
+ "net462",
59
+ "net47",
60
+ "net471",
61
+ "net472",
62
+ "net48",
63
+ "net481"
64
+ ],
65
+ "assetTargetFallback": true,
66
+ "warn": true,
67
+ "frameworkReferences": {
68
+ "Microsoft.AspNetCore.App": {
69
+ "privateAssets": "none"
70
+ },
71
+ "Microsoft.NETCore.App": {
72
+ "privateAssets": "all"
73
+ }
74
+ },
75
+ "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
76
+ }
77
+ }
78
+ }
79
+ }
80
+ }
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+ <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
+ <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
4
+ <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
5
+ <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
6
+ <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
7
+ <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/Users/alejandro.lopez/.nuget/packages/</NuGetPackageRoot>
8
+ <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/Users/alejandro.lopez/.nuget/packages/</NuGetPackageFolders>
9
+ <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
10
+ <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.1</NuGetToolVersion>
11
+ </PropertyGroup>
12
+ <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
13
+ <SourceRoot Include="/Users/alejandro.lopez/.nuget/packages/" />
14
+ </ItemGroup>
15
+ <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
16
+ <PkgAWSSDK_Core Condition=" '$(PkgAWSSDK_Core)' == '' ">/Users/alejandro.lopez/.nuget/packages/awssdk.core/3.7.400</PkgAWSSDK_Core>
17
+ <PkgAWSSDK_SecretsManager Condition=" '$(PkgAWSSDK_SecretsManager)' == '' ">/Users/alejandro.lopez/.nuget/packages/awssdk.secretsmanager/3.7.400</PkgAWSSDK_SecretsManager>
18
+ </PropertyGroup>
19
+ </Project>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+ <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
+ <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
4
+ <Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/8.0.0/buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/8.0.0/buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets')" />
5
+ </ImportGroup>
6
+ </Project>
@@ -0,0 +1,4 @@
1
+ // <autogenerated />
2
+ using System;
3
+ using System.Reflection;
4
+ [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
@@ -0,0 +1,22 @@
1
+ //------------------------------------------------------------------------------
2
+ // <auto-generated>
3
+ // This code was generated by a tool.
4
+ //
5
+ // Changes to this file may cause incorrect behavior and will be lost if
6
+ // the code is regenerated.
7
+ // </auto-generated>
8
+ //------------------------------------------------------------------------------
9
+
10
+ using System;
11
+ using System.Reflection;
12
+
13
+ [assembly: System.Reflection.AssemblyCompanyAttribute("Api")]
14
+ [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
15
+ [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
16
+ [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f4db1eb14515a4157a4850a57c0b8c85baa6740e")]
17
+ [assembly: System.Reflection.AssemblyProductAttribute("Api")]
18
+ [assembly: System.Reflection.AssemblyTitleAttribute("Api")]
19
+ [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
20
+
21
+ // Generated by the MSBuild WriteCodeFragment class.
22
+
@@ -0,0 +1 @@
1
+ 1799ac38bbc38f0c289f5500dbe232d0d25d9ca54a2558cbd39eded73fb8a4ca
@@ -0,0 +1,19 @@
1
+ is_global = true
2
+ build_property.TargetFramework = net8.0
3
+ build_property.TargetPlatformMinVersion =
4
+ build_property.UsingMicrosoftNETSdkWeb = true
5
+ build_property.ProjectTypeGuids =
6
+ build_property.InvariantGlobalization =
7
+ build_property.PlatformNeutralAssembly =
8
+ build_property.EnforceExtendedAnalyzerRules =
9
+ build_property._SupportedPlatformList = Linux,macOS,Windows
10
+ build_property.RootNamespace = Api
11
+ build_property.RootNamespace = Api
12
+ build_property.ProjectDir = /Users/alejandro.lopez/code/phila-ctl/packages/cli/dist/templates/webapp-ecs-postgres-dotnet/apps/api/
13
+ build_property.EnableComHosting =
14
+ build_property.EnableGeneratedComInterfaceComImportInterop =
15
+ build_property.RazorLangVersion = 8.0
16
+ build_property.SupportLocalizedComponentNames =
17
+ build_property.GenerateRazorMetadataSourceChecksumAttributes =
18
+ build_property.MSBuildProjectDirectory = /Users/alejandro.lopez/code/phila-ctl/packages/cli/dist/templates/webapp-ecs-postgres-dotnet/apps/api
19
+ build_property._RazorSourceGeneratorDebug =
@@ -0,0 +1,17 @@
1
+ // <auto-generated/>
2
+ global using global::Microsoft.AspNetCore.Builder;
3
+ global using global::Microsoft.AspNetCore.Hosting;
4
+ global using global::Microsoft.AspNetCore.Http;
5
+ global using global::Microsoft.AspNetCore.Routing;
6
+ global using global::Microsoft.Extensions.Configuration;
7
+ global using global::Microsoft.Extensions.DependencyInjection;
8
+ global using global::Microsoft.Extensions.Hosting;
9
+ global using global::Microsoft.Extensions.Logging;
10
+ global using global::System;
11
+ global using global::System.Collections.Generic;
12
+ global using global::System.IO;
13
+ global using global::System.Linq;
14
+ global using global::System.Net.Http;
15
+ global using global::System.Net.Http.Json;
16
+ global using global::System.Threading;
17
+ global using global::System.Threading.Tasks;
@@ -0,0 +1,395 @@
1
+ {
2
+ "version": 3,
3
+ "targets": {
4
+ "net8.0": {
5
+ "AWSSDK.Core/3.7.400": {
6
+ "type": "package",
7
+ "compile": {
8
+ "lib/net8.0/AWSSDK.Core.dll": {
9
+ "related": ".pdb;.xml"
10
+ }
11
+ },
12
+ "runtime": {
13
+ "lib/net8.0/AWSSDK.Core.dll": {
14
+ "related": ".pdb;.xml"
15
+ }
16
+ }
17
+ },
18
+ "AWSSDK.SecretsManager/3.7.400": {
19
+ "type": "package",
20
+ "dependencies": {
21
+ "AWSSDK.Core": "[3.7.400, 4.0.0)"
22
+ },
23
+ "compile": {
24
+ "lib/net8.0/AWSSDK.SecretsManager.dll": {
25
+ "related": ".pdb;.xml"
26
+ }
27
+ },
28
+ "runtime": {
29
+ "lib/net8.0/AWSSDK.SecretsManager.dll": {
30
+ "related": ".pdb;.xml"
31
+ }
32
+ }
33
+ },
34
+ "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
35
+ "type": "package",
36
+ "compile": {
37
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
38
+ "related": ".xml"
39
+ }
40
+ },
41
+ "runtime": {
42
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
43
+ "related": ".xml"
44
+ }
45
+ },
46
+ "build": {
47
+ "buildTransitive/net6.0/_._": {}
48
+ }
49
+ },
50
+ "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
51
+ "type": "package",
52
+ "dependencies": {
53
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
54
+ },
55
+ "compile": {
56
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
57
+ "related": ".xml"
58
+ }
59
+ },
60
+ "runtime": {
61
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
62
+ "related": ".xml"
63
+ }
64
+ },
65
+ "build": {
66
+ "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
67
+ }
68
+ },
69
+ "Npgsql/8.0.0": {
70
+ "type": "package",
71
+ "dependencies": {
72
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
73
+ },
74
+ "compile": {
75
+ "lib/net8.0/Npgsql.dll": {
76
+ "related": ".xml"
77
+ }
78
+ },
79
+ "runtime": {
80
+ "lib/net8.0/Npgsql.dll": {
81
+ "related": ".xml"
82
+ }
83
+ }
84
+ }
85
+ }
86
+ },
87
+ "libraries": {
88
+ "AWSSDK.Core/3.7.400": {
89
+ "sha512": "qw+WGhxcYtZ6wc1uibOu9XXLsfUpQ1r+gWa0euFnm1e9HowQbcwvKvOqQzwBNqIBO7S5IJ26T9kV/eFiwvZAkQ==",
90
+ "type": "package",
91
+ "path": "awssdk.core/3.7.400",
92
+ "hasTools": true,
93
+ "files": [
94
+ ".nupkg.metadata",
95
+ ".signature.p7s",
96
+ "awssdk.core.3.7.400.nupkg.sha512",
97
+ "awssdk.core.nuspec",
98
+ "images/AWSLogo.png",
99
+ "lib/net35/AWSSDK.Core.dll",
100
+ "lib/net35/AWSSDK.Core.pdb",
101
+ "lib/net35/AWSSDK.Core.xml",
102
+ "lib/net45/AWSSDK.Core.dll",
103
+ "lib/net45/AWSSDK.Core.pdb",
104
+ "lib/net45/AWSSDK.Core.xml",
105
+ "lib/net8.0/AWSSDK.Core.dll",
106
+ "lib/net8.0/AWSSDK.Core.pdb",
107
+ "lib/net8.0/AWSSDK.Core.xml",
108
+ "lib/netcoreapp3.1/AWSSDK.Core.dll",
109
+ "lib/netcoreapp3.1/AWSSDK.Core.pdb",
110
+ "lib/netcoreapp3.1/AWSSDK.Core.xml",
111
+ "lib/netstandard2.0/AWSSDK.Core.dll",
112
+ "lib/netstandard2.0/AWSSDK.Core.pdb",
113
+ "lib/netstandard2.0/AWSSDK.Core.xml",
114
+ "tools/account-management.ps1"
115
+ ]
116
+ },
117
+ "AWSSDK.SecretsManager/3.7.400": {
118
+ "sha512": "46KCISbKTMlHq6c79WyTKrKYqGBQpHOUCpMXwiXf7LL2FLQda8fsu/hJCBxfSsxS/+eEGj604QgWWyfPF1OBOw==",
119
+ "type": "package",
120
+ "path": "awssdk.secretsmanager/3.7.400",
121
+ "hasTools": true,
122
+ "files": [
123
+ ".nupkg.metadata",
124
+ ".signature.p7s",
125
+ "analyzers/dotnet/cs/AWSSDK.SecretsManager.CodeAnalysis.dll",
126
+ "analyzers/dotnet/cs/SharedAnalysisCode.dll",
127
+ "awssdk.secretsmanager.3.7.400.nupkg.sha512",
128
+ "awssdk.secretsmanager.nuspec",
129
+ "images/AWSLogo.png",
130
+ "lib/net35/AWSSDK.SecretsManager.dll",
131
+ "lib/net35/AWSSDK.SecretsManager.pdb",
132
+ "lib/net35/AWSSDK.SecretsManager.xml",
133
+ "lib/net45/AWSSDK.SecretsManager.dll",
134
+ "lib/net45/AWSSDK.SecretsManager.pdb",
135
+ "lib/net45/AWSSDK.SecretsManager.xml",
136
+ "lib/net8.0/AWSSDK.SecretsManager.dll",
137
+ "lib/net8.0/AWSSDK.SecretsManager.pdb",
138
+ "lib/net8.0/AWSSDK.SecretsManager.xml",
139
+ "lib/netcoreapp3.1/AWSSDK.SecretsManager.dll",
140
+ "lib/netcoreapp3.1/AWSSDK.SecretsManager.pdb",
141
+ "lib/netcoreapp3.1/AWSSDK.SecretsManager.xml",
142
+ "lib/netstandard2.0/AWSSDK.SecretsManager.dll",
143
+ "lib/netstandard2.0/AWSSDK.SecretsManager.pdb",
144
+ "lib/netstandard2.0/AWSSDK.SecretsManager.xml",
145
+ "tools/install.ps1",
146
+ "tools/uninstall.ps1"
147
+ ]
148
+ },
149
+ "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
150
+ "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==",
151
+ "type": "package",
152
+ "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0",
153
+ "files": [
154
+ ".nupkg.metadata",
155
+ ".signature.p7s",
156
+ "Icon.png",
157
+ "LICENSE.TXT",
158
+ "PACKAGE.md",
159
+ "THIRD-PARTY-NOTICES.TXT",
160
+ "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
161
+ "buildTransitive/net462/_._",
162
+ "buildTransitive/net6.0/_._",
163
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
164
+ "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
165
+ "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
166
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
167
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
168
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
169
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
170
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
171
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
172
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
173
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
174
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
175
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
176
+ "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512",
177
+ "microsoft.extensions.dependencyinjection.abstractions.nuspec",
178
+ "useSharedDesignerContext.txt"
179
+ ]
180
+ },
181
+ "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
182
+ "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
183
+ "type": "package",
184
+ "path": "microsoft.extensions.logging.abstractions/8.0.0",
185
+ "files": [
186
+ ".nupkg.metadata",
187
+ ".signature.p7s",
188
+ "Icon.png",
189
+ "LICENSE.TXT",
190
+ "PACKAGE.md",
191
+ "THIRD-PARTY-NOTICES.TXT",
192
+ "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
193
+ "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
194
+ "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
195
+ "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
196
+ "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
197
+ "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
198
+ "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
199
+ "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
200
+ "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
201
+ "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
202
+ "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
203
+ "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
204
+ "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
205
+ "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
206
+ "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
207
+ "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
208
+ "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
209
+ "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
210
+ "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
211
+ "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
212
+ "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
213
+ "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
214
+ "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
215
+ "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
216
+ "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
217
+ "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
218
+ "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
219
+ "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
220
+ "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
221
+ "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
222
+ "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
223
+ "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
224
+ "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
225
+ "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
226
+ "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
227
+ "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
228
+ "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
229
+ "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
230
+ "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
231
+ "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
232
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
233
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
234
+ "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
235
+ "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
236
+ "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
237
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
238
+ "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
239
+ "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
240
+ "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
241
+ "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
242
+ "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
243
+ "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
244
+ "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
245
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
246
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
247
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
248
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
249
+ "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
250
+ "microsoft.extensions.logging.abstractions.nuspec",
251
+ "useSharedDesignerContext.txt"
252
+ ]
253
+ },
254
+ "Npgsql/8.0.0": {
255
+ "sha512": "Qiz74U+O7Mv4knrsXgKVYGJjgwoziK+aMFZqz7PtKR3vyGIhZA0tnW6HoUnL3X+YqtmVuhmoKkN8LDWEHMxPbw==",
256
+ "type": "package",
257
+ "path": "npgsql/8.0.0",
258
+ "files": [
259
+ ".nupkg.metadata",
260
+ ".signature.p7s",
261
+ "README.md",
262
+ "lib/net6.0/Npgsql.dll",
263
+ "lib/net6.0/Npgsql.xml",
264
+ "lib/net7.0/Npgsql.dll",
265
+ "lib/net7.0/Npgsql.xml",
266
+ "lib/net8.0/Npgsql.dll",
267
+ "lib/net8.0/Npgsql.xml",
268
+ "lib/netstandard2.0/Npgsql.dll",
269
+ "lib/netstandard2.0/Npgsql.xml",
270
+ "lib/netstandard2.1/Npgsql.dll",
271
+ "lib/netstandard2.1/Npgsql.xml",
272
+ "npgsql.8.0.0.nupkg.sha512",
273
+ "npgsql.nuspec",
274
+ "postgresql.png"
275
+ ]
276
+ }
277
+ },
278
+ "projectFileDependencyGroups": {
279
+ "net8.0": [
280
+ "AWSSDK.SecretsManager >= 3.7.400",
281
+ "Npgsql >= 8.0.0"
282
+ ]
283
+ },
284
+ "packageFolders": {
285
+ "/Users/alejandro.lopez/.nuget/packages/": {}
286
+ },
287
+ "project": {
288
+ "version": "1.0.0",
289
+ "restore": {
290
+ "projectUniqueName": "/Users/alejandro.lopez/code/phila-ctl/templates/webapp-ecs-postgres-dotnet/apps/api/Api.csproj",
291
+ "projectName": "Api",
292
+ "projectPath": "/Users/alejandro.lopez/code/phila-ctl/templates/webapp-ecs-postgres-dotnet/apps/api/Api.csproj",
293
+ "packagesPath": "/Users/alejandro.lopez/.nuget/packages/",
294
+ "outputPath": "/Users/alejandro.lopez/code/phila-ctl/templates/webapp-ecs-postgres-dotnet/apps/api/obj/",
295
+ "projectStyle": "PackageReference",
296
+ "configFilePaths": [
297
+ "/Users/alejandro.lopez/.nuget/NuGet/NuGet.Config"
298
+ ],
299
+ "originalTargetFrameworks": [
300
+ "net8.0"
301
+ ],
302
+ "sources": {
303
+ "https://api.nuget.org/v3/index.json": {},
304
+ "https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json": {}
305
+ },
306
+ "frameworks": {
307
+ "net8.0": {
308
+ "targetAlias": "net8.0",
309
+ "projectReferences": {}
310
+ }
311
+ },
312
+ "warningProperties": {
313
+ "warnAsError": [
314
+ "NU1605"
315
+ ]
316
+ },
317
+ "restoreAuditProperties": {
318
+ "enableAudit": "true",
319
+ "auditLevel": "low",
320
+ "auditMode": "direct"
321
+ }
322
+ },
323
+ "frameworks": {
324
+ "net8.0": {
325
+ "targetAlias": "net8.0",
326
+ "dependencies": {
327
+ "AWSSDK.SecretsManager": {
328
+ "target": "Package",
329
+ "version": "[3.7.400, )"
330
+ },
331
+ "Npgsql": {
332
+ "target": "Package",
333
+ "version": "[8.0.0, )"
334
+ }
335
+ },
336
+ "imports": [
337
+ "net461",
338
+ "net462",
339
+ "net47",
340
+ "net471",
341
+ "net472",
342
+ "net48",
343
+ "net481"
344
+ ],
345
+ "assetTargetFallback": true,
346
+ "warn": true,
347
+ "frameworkReferences": {
348
+ "Microsoft.AspNetCore.App": {
349
+ "privateAssets": "none"
350
+ },
351
+ "Microsoft.NETCore.App": {
352
+ "privateAssets": "all"
353
+ }
354
+ },
355
+ "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
356
+ }
357
+ }
358
+ },
359
+ "logs": [
360
+ {
361
+ "code": "NU1301",
362
+ "level": "Error",
363
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
364
+ "libraryId": "Npgsql"
365
+ },
366
+ {
367
+ "code": "NU1301",
368
+ "level": "Error",
369
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
370
+ "libraryId": "AWSSDK.SecretsManager"
371
+ },
372
+ {
373
+ "code": "NU1301",
374
+ "level": "Error",
375
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
376
+ "libraryId": "AWSSDK.SecretsManager"
377
+ },
378
+ {
379
+ "code": "NU1900",
380
+ "level": "Warning",
381
+ "warningLevel": 1,
382
+ "message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json."
383
+ },
384
+ {
385
+ "code": "NU1903",
386
+ "level": "Warning",
387
+ "warningLevel": 1,
388
+ "message": "Package 'Npgsql' 8.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-x9vc-6hfv-hg8c",
389
+ "libraryId": "Npgsql",
390
+ "targetGraphs": [
391
+ "net8.0"
392
+ ]
393
+ }
394
+ ]
395
+ }
@@ -0,0 +1,49 @@
1
+ {
2
+ "version": 2,
3
+ "dgSpecHash": "IrgQ5Q90ppY=",
4
+ "success": false,
5
+ "projectFilePath": "/Users/alejandro.lopez/code/phila-ctl/templates/webapp-ecs-postgres-dotnet/apps/api/Api.csproj",
6
+ "expectedPackageFiles": [
7
+ "/Users/alejandro.lopez/.nuget/packages/awssdk.core/3.7.400/awssdk.core.3.7.400.nupkg.sha512",
8
+ "/Users/alejandro.lopez/.nuget/packages/awssdk.secretsmanager/3.7.400/awssdk.secretsmanager.3.7.400.nupkg.sha512",
9
+ "/Users/alejandro.lopez/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/8.0.0/microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512",
10
+ "/Users/alejandro.lopez/.nuget/packages/microsoft.extensions.logging.abstractions/8.0.0/microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
11
+ "/Users/alejandro.lopez/.nuget/packages/npgsql/8.0.0/npgsql.8.0.0.nupkg.sha512"
12
+ ],
13
+ "logs": [
14
+ {
15
+ "code": "NU1301",
16
+ "level": "Error",
17
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
18
+ "libraryId": "Npgsql"
19
+ },
20
+ {
21
+ "code": "NU1301",
22
+ "level": "Error",
23
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
24
+ "libraryId": "AWSSDK.SecretsManager"
25
+ },
26
+ {
27
+ "code": "NU1301",
28
+ "level": "Error",
29
+ "message": "Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json.",
30
+ "libraryId": "AWSSDK.SecretsManager"
31
+ },
32
+ {
33
+ "code": "NU1900",
34
+ "level": "Warning",
35
+ "warningLevel": 1,
36
+ "message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://philagov-102658671810.d.codeartifact.us-east-1.amazonaws.com/nuget/se-team/v3/index.json."
37
+ },
38
+ {
39
+ "code": "NU1903",
40
+ "level": "Warning",
41
+ "warningLevel": 1,
42
+ "message": "Package 'Npgsql' 8.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-x9vc-6hfv-hg8c",
43
+ "libraryId": "Npgsql",
44
+ "targetGraphs": [
45
+ "net8.0"
46
+ ]
47
+ }
48
+ ]
49
+ }