backend-manager 5.9.6 → 5.9.8

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 (215) hide show
  1. package/package.json +5 -3
  2. package/src/manager/events/cron/runner.js +0 -1
  3. package/src/manager/libraries/email/data/disposable-domains.json +21 -0
  4. package/src/test/fixtures/firebase-project/.temp/test-mode.json +1 -1
  5. package/src/test/fixtures/firebase-project/database-debug.log +8 -8
  6. package/src/test/fixtures/firebase-project/firestore-debug.log +55 -59
  7. package/src/test/fixtures/firebase-project/pubsub-debug.log +3 -3
  8. package/templates/_.env +42 -0
  9. package/templates/_.gitignore +60 -0
  10. package/templates/backend-manager-config.json +249 -0
  11. package/templates/database.rules.json +83 -0
  12. package/templates/firebase.json +66 -0
  13. package/templates/firestore.indexes.json +4 -0
  14. package/templates/firestore.rules +112 -0
  15. package/templates/public/404.html +26 -0
  16. package/templates/public/index.html +24 -0
  17. package/templates/remoteconfig.template.json +1 -0
  18. package/templates/storage-lifecycle-config-1-day.json +9 -0
  19. package/templates/storage-lifecycle-config-30-days.json +9 -0
  20. package/templates/storage.rules +8 -0
  21. package/test/_init/accounts-validation.js +58 -0
  22. package/test/_legacy/ai/index.js +231 -0
  23. package/test/_legacy/ai/test.jpg +0 -0
  24. package/test/_legacy/ai/test.pdf +0 -0
  25. package/test/_legacy/index.js +31 -0
  26. package/test/_legacy/payment-resolver/chargebee/orders/refunded.json +0 -0
  27. package/test/_legacy/payment-resolver/chargebee/orders/unpaid.json +98 -0
  28. package/test/_legacy/payment-resolver/chargebee/subscriptions/active.json +578 -0
  29. package/test/_legacy/payment-resolver/chargebee/subscriptions/trial-in-trial.json +38 -0
  30. package/test/_legacy/payment-resolver/chargebee/subscriptions/trial-skipped-to-active.json +135 -0
  31. package/test/_legacy/payment-resolver/chargebee/subscriptions/trial-to-active-to-cancelled.json +42 -0
  32. package/test/_legacy/payment-resolver/chargebee/subscriptions/trial-to-active.json +44 -0
  33. package/test/_legacy/payment-resolver/chargebee/subscriptions/trial-to-cancelled.json +39 -0
  34. package/test/_legacy/payment-resolver/chargebee/subscriptions/trial-to-refund.json +143 -0
  35. package/test/_legacy/payment-resolver/chargebee/subscriptions/trial-to-suspended.json +48 -0
  36. package/test/_legacy/payment-resolver/coinbase/orders/regular.json +204 -0
  37. package/test/_legacy/payment-resolver/coinbase/subscriptions/cancelled.json +204 -0
  38. package/test/_legacy/payment-resolver/coinbase/subscriptions/paid-2.json +125 -0
  39. package/test/_legacy/payment-resolver/index.js +1558 -0
  40. package/test/_legacy/payment-resolver/paypal/orders/refunded.json +0 -0
  41. package/test/_legacy/payment-resolver/paypal/orders/regular.json +120 -0
  42. package/test/_legacy/payment-resolver/paypal/subscriptions/active-refund-previous-stmnt.json +323 -0
  43. package/test/_legacy/payment-resolver/paypal/subscriptions/active.json +192 -0
  44. package/test/_legacy/payment-resolver/paypal/subscriptions/trial-in-trial.json +125 -0
  45. package/test/_legacy/payment-resolver/paypal/subscriptions/trial-payment-not-complete.json +76 -0
  46. package/test/_legacy/payment-resolver/paypal/subscriptions/trial-payment-overdue-2.json +114 -0
  47. package/test/_legacy/payment-resolver/paypal/subscriptions/trial-payment-overdue.json +114 -0
  48. package/test/_legacy/payment-resolver/paypal/subscriptions/trial-to-active-to-cancelled.json +111 -0
  49. package/test/_legacy/payment-resolver/paypal/subscriptions/trial-to-active.json +132 -0
  50. package/test/_legacy/payment-resolver/paypal/subscriptions/trial-to-cancelled.json +107 -0
  51. package/test/_legacy/payment-resolver/paypal/subscriptions/trial-to-expired.json +91 -0
  52. package/test/_legacy/payment-resolver/paypal/subscriptions/trial-to-refund.json +147 -0
  53. package/test/_legacy/payment-resolver/paypal/subscriptions/trial-to-suspended.json +120 -0
  54. package/test/_legacy/payment-resolver/stripe/orders/refunded.json +0 -0
  55. package/test/_legacy/payment-resolver/stripe/orders/regular.json +91 -0
  56. package/test/_legacy/payment-resolver/stripe/subscriptions/active.json +421 -0
  57. package/test/_legacy/payment-resolver/stripe/subscriptions/trial-in-trial.json +349 -0
  58. package/test/_legacy/payment-resolver/stripe/subscriptions/trial-to-active-failed-authorization.json +430 -0
  59. package/test/_legacy/payment-resolver/stripe/subscriptions/trial-to-active.json +319 -0
  60. package/test/_legacy/payment-resolver/stripe/subscriptions/trial-to-cancelled.json +319 -0
  61. package/test/_legacy/payment-resolver/stripe/subscriptions/trial-to-refund.json +414 -0
  62. package/test/_legacy/payment-resolver/stripe/subscriptions/trial-to-suspended.json +319 -0
  63. package/test/_legacy/payment-resolver/stripe/subscriptions/unsure.json +339 -0
  64. package/test/_legacy/test-new +1178 -0
  65. package/test/_legacy/test.md +89 -0
  66. package/test/_legacy/usage.js +175 -0
  67. package/test/_legacy/user.js +31 -0
  68. package/test/ai/tools-live.js +170 -0
  69. package/test/boot/emulator-boots.js +37 -0
  70. package/test/content/blog-generate.js +160 -0
  71. package/test/email/campaign-send.js +45 -0
  72. package/test/email/consent-lifecycle.js +257 -0
  73. package/test/email/feedback-and-plain-send.js +52 -0
  74. package/test/email/fixtures/clean.json +30 -0
  75. package/test/email/fixtures/editorial.json +30 -0
  76. package/test/email/fixtures/field-report.json +53 -0
  77. package/test/email/marketing-lifecycle.js +132 -0
  78. package/test/email/newsletter-generate.js +819 -0
  79. package/test/email/newsletter-templates.js +491 -0
  80. package/test/email/templates.js +207 -0
  81. package/test/email/transactional-send.js +34 -0
  82. package/test/email/transactional.js +560 -0
  83. package/test/email/validation.js +710 -0
  84. package/test/events/auth-delete-race.js +201 -0
  85. package/test/events/payments/journey-payments-cancel-endpoint.js +100 -0
  86. package/test/events/payments/journey-payments-cancel.js +182 -0
  87. package/test/events/payments/journey-payments-discount.js +89 -0
  88. package/test/events/payments/journey-payments-failure.js +146 -0
  89. package/test/events/payments/journey-payments-legacy-product.js +149 -0
  90. package/test/events/payments/journey-payments-one-time-failure.js +111 -0
  91. package/test/events/payments/journey-payments-one-time.js +136 -0
  92. package/test/events/payments/journey-payments-plan-change.js +144 -0
  93. package/test/events/payments/journey-payments-refund-webhook.js +180 -0
  94. package/test/events/payments/journey-payments-suspend.js +181 -0
  95. package/test/events/payments/journey-payments-trial-cancel.js +130 -0
  96. package/test/events/payments/journey-payments-trial.js +171 -0
  97. package/test/events/payments/journey-payments-uid-resolution.js +132 -0
  98. package/test/events/payments/journey-payments-upgrade.js +135 -0
  99. package/test/fixtures/chargebee/invoice-one-time.json +27 -0
  100. package/test/fixtures/chargebee/subscription-active.json +44 -0
  101. package/test/fixtures/chargebee/subscription-cancelled.json +42 -0
  102. package/test/fixtures/chargebee/subscription-in-trial.json +41 -0
  103. package/test/fixtures/chargebee/subscription-legacy-plan.json +41 -0
  104. package/test/fixtures/chargebee/subscription-non-renewing.json +41 -0
  105. package/test/fixtures/chargebee/subscription-paused.json +42 -0
  106. package/test/fixtures/chargebee/webhook-payment-failed.json +51 -0
  107. package/test/fixtures/chargebee/webhook-subscription-created.json +47 -0
  108. package/test/fixtures/paypal/order-approved.json +62 -0
  109. package/test/fixtures/paypal/order-completed.json +110 -0
  110. package/test/fixtures/paypal/subscription-active.json +76 -0
  111. package/test/fixtures/paypal/subscription-cancelled.json +50 -0
  112. package/test/fixtures/paypal/subscription-suspended.json +65 -0
  113. package/test/fixtures/stripe/checkout-session-completed.json +130 -0
  114. package/test/fixtures/stripe/invoice-payment-failed.json +148 -0
  115. package/test/fixtures/stripe/invoice-subscription-payment-failed.json +28 -0
  116. package/test/fixtures/stripe/subscription-active.json +161 -0
  117. package/test/fixtures/stripe/subscription-canceled.json +161 -0
  118. package/test/fixtures/stripe/subscription-trialing.json +161 -0
  119. package/test/functions/admin/database-read.js +134 -0
  120. package/test/functions/admin/database-write.js +159 -0
  121. package/test/functions/admin/edit-post.js +366 -0
  122. package/test/functions/admin/firestore-query.js +207 -0
  123. package/test/functions/admin/firestore-read.js +129 -0
  124. package/test/functions/admin/firestore-write.js +105 -0
  125. package/test/functions/admin/get-stats.js +115 -0
  126. package/test/functions/admin/send-email.js +119 -0
  127. package/test/functions/admin/send-notification.js +208 -0
  128. package/test/functions/admin/write-repo-content.js +223 -0
  129. package/test/functions/general/add-marketing-contact.js +335 -0
  130. package/test/functions/general/fetch-post.js +54 -0
  131. package/test/functions/general/generate-uuid.js +114 -0
  132. package/test/functions/test/authenticate.js +64 -0
  133. package/test/functions/user/create-custom-token.js +73 -0
  134. package/test/functions/user/delete.js +135 -0
  135. package/test/functions/user/get-active-sessions.js +111 -0
  136. package/test/functions/user/get-subscription-info.js +99 -0
  137. package/test/functions/user/regenerate-api-keys.js +156 -0
  138. package/test/functions/user/resolve.js +52 -0
  139. package/test/functions/user/sign-out-all-sessions.js +94 -0
  140. package/test/functions/user/sign-up.js +252 -0
  141. package/test/functions/user/submit-feedback.js +104 -0
  142. package/test/functions/user/validate-settings.js +82 -0
  143. package/test/helpers/ai-request-payload.js +300 -0
  144. package/test/helpers/ai-test-provider.js +202 -0
  145. package/test/helpers/ai-tools-format.js +383 -0
  146. package/test/helpers/content/blog-auto-publisher.js +484 -0
  147. package/test/helpers/content/feed-parser.js +528 -0
  148. package/test/helpers/content/ghostii-blocks.js +134 -0
  149. package/test/helpers/content/ghostii-feed-integration.js +404 -0
  150. package/test/helpers/content/ghostii-write-article.js +243 -0
  151. package/test/helpers/environment.js +230 -0
  152. package/test/helpers/infer-contact.js +113 -0
  153. package/test/helpers/merge-line-files.js +271 -0
  154. package/test/helpers/payment/chargebee/parse-webhook.js +413 -0
  155. package/test/helpers/payment/chargebee/to-unified-one-time.js +147 -0
  156. package/test/helpers/payment/chargebee/to-unified-subscription.js +648 -0
  157. package/test/helpers/payment/paypal/parse-webhook.js +539 -0
  158. package/test/helpers/payment/paypal/to-unified-one-time.js +382 -0
  159. package/test/helpers/payment/paypal/to-unified-subscription.js +820 -0
  160. package/test/helpers/payment/stripe/parse-webhook.js +447 -0
  161. package/test/helpers/payment/stripe/to-unified-one-time.js +306 -0
  162. package/test/helpers/payment/stripe/to-unified-subscription.js +708 -0
  163. package/test/helpers/sanitize.js +222 -0
  164. package/test/helpers/slugify.js +394 -0
  165. package/test/helpers/storage.js +194 -0
  166. package/test/helpers/user.js +755 -0
  167. package/test/helpers/webhook-forward.js +418 -0
  168. package/test/mcp/discovery.js +53 -0
  169. package/test/mcp/oauth.js +161 -0
  170. package/test/mcp/protocol.js +268 -0
  171. package/test/mcp/roles.js +188 -0
  172. package/test/mcp/utils.js +245 -0
  173. package/test/routes/admin/create-post.js +364 -0
  174. package/test/routes/admin/database.js +131 -0
  175. package/test/routes/admin/deduplicate-image-alts.js +190 -0
  176. package/test/routes/admin/email.js +114 -0
  177. package/test/routes/admin/firestore-query.js +204 -0
  178. package/test/routes/admin/firestore.js +127 -0
  179. package/test/routes/admin/infer-contact.js +218 -0
  180. package/test/routes/admin/notification.js +198 -0
  181. package/test/routes/admin/post-resize-image.js +184 -0
  182. package/test/routes/admin/post.js +368 -0
  183. package/test/routes/admin/repo-content.js +223 -0
  184. package/test/routes/admin/stats.js +112 -0
  185. package/test/routes/content/post.js +54 -0
  186. package/test/routes/general/uuid.js +115 -0
  187. package/test/routes/marketing/campaign.js +125 -0
  188. package/test/routes/marketing/contact.js +370 -0
  189. package/test/routes/marketing/email-preferences.js +292 -0
  190. package/test/routes/marketing/push-send.js +32 -0
  191. package/test/routes/marketing/webhook-forward.js +61 -0
  192. package/test/routes/marketing/webhook.js +639 -0
  193. package/test/routes/payments/cancel.js +163 -0
  194. package/test/routes/payments/discount.js +80 -0
  195. package/test/routes/payments/dispute-alert.js +320 -0
  196. package/test/routes/payments/intent.js +336 -0
  197. package/test/routes/payments/portal.js +92 -0
  198. package/test/routes/payments/refund.js +179 -0
  199. package/test/routes/payments/trial-eligibility.js +71 -0
  200. package/test/routes/payments/webhook.js +107 -0
  201. package/test/routes/test/authenticate.js +59 -0
  202. package/test/routes/test/schema.js +554 -0
  203. package/test/routes/test/usage.js +342 -0
  204. package/test/routes/user/api-keys.js +156 -0
  205. package/test/routes/user/delete.js +136 -0
  206. package/test/routes/user/feedback.js +104 -0
  207. package/test/routes/user/sessions.js +199 -0
  208. package/test/routes/user/settings-validate.js +82 -0
  209. package/test/routes/user/signup.js +542 -0
  210. package/test/routes/user/subscription.js +99 -0
  211. package/test/routes/user/token.js +73 -0
  212. package/test/routes/user/user.js +157 -0
  213. package/test/rules/notifications.js +410 -0
  214. package/test/rules/payments-carts.js +371 -0
  215. package/test/rules/user.js +396 -0
package/package.json CHANGED
@@ -1,13 +1,15 @@
1
1
  {
2
2
  "name": "backend-manager",
3
- "version": "5.9.6",
3
+ "version": "5.9.8",
4
4
  "description": "Quick tools for developing Firebase functions",
5
5
  "main": "src/manager/index.js",
6
6
  "files": [
7
- "src/",
8
- "dist/",
9
7
  "bin/",
8
+ "dist/",
10
9
  "docs/",
10
+ "src/",
11
+ "templates/",
12
+ "test/",
11
13
  "CLAUDE.md"
12
14
  ],
13
15
  "bin": {
@@ -54,7 +54,6 @@ async function loadAndExecuteJobs(name, jobsPath, Manager, context) {
54
54
  assistant.log('Completed!');
55
55
  } catch (e) {
56
56
  assistant.errorify(`Error executing: ${e}`, { code: 500, sentry: true });
57
- throw e;
58
57
  }
59
58
  }
60
59
  }
@@ -421,6 +421,7 @@
421
421
  "advitise.com",
422
422
  "advocatewe.us",
423
423
  "adwaterandstir.com",
424
+ "aecmedya.com",
424
425
  "aegde.com",
425
426
  "aegia.net",
426
427
  "aegiscorp.net",
@@ -979,6 +980,7 @@
979
980
  "bgtmail.com",
980
981
  "bgx.ro",
981
982
  "bgyiacczy.top",
983
+ "bhap.me",
982
984
  "bheps.com",
983
985
  "bhuxp.org",
984
986
  "bidourlnks.com",
@@ -1009,6 +1011,7 @@
1009
1011
  "bittnex.com",
1010
1012
  "bitwhites.top",
1011
1013
  "bitymails.us",
1014
+ "biweia615.icu",
1012
1015
  "biyug.com",
1013
1016
  "biz.st",
1014
1017
  "bizisstance.com",
@@ -1380,6 +1383,7 @@
1380
1383
  "cloudsign.in",
1381
1384
  "cloudwhitespace.cc.cd",
1382
1385
  "cloudwhitezone.cc.cd",
1386
+ "cloudyourfast.net",
1383
1387
  "clousy.site",
1384
1388
  "clout.wiki",
1385
1389
  "clowmail.com",
@@ -1577,6 +1581,7 @@
1577
1581
  "dash-pads.com",
1578
1582
  "dataarca.com",
1579
1583
  "datadudi.com",
1584
+ "datapinacle.com",
1580
1585
  "datarca.com",
1581
1586
  "datazo.ca",
1582
1587
  "datenschutz.ru",
@@ -2322,6 +2327,7 @@
2322
2327
  "fbkjlnry.top",
2323
2328
  "fblgsl.cam",
2324
2329
  "fbma.tk",
2330
+ "fboxmail.com",
2325
2331
  "fcetpkqwm.top",
2326
2332
  "fddns.ml",
2327
2333
  "fdfdsfds.com",
@@ -2757,6 +2763,7 @@
2757
2763
  "goleudy.org.uk",
2758
2764
  "goliszek.net",
2759
2765
  "gomail.in",
2766
+ "gomomy.sbs",
2760
2767
  "gongjua.com",
2761
2768
  "gonida.co.uk",
2762
2769
  "gonida.com",
@@ -3117,6 +3124,7 @@
3117
3124
  "hopemail.biz",
3118
3125
  "hopesx.com",
3119
3126
  "horizonspost.com",
3127
+ "hormails.com",
3120
3128
  "hornhorizon.com",
3121
3129
  "hornyalwary.top",
3122
3130
  "host1s.com",
@@ -3454,6 +3462,7 @@
3454
3462
  "janproz.com",
3455
3463
  "japnc.com",
3456
3464
  "jaqis.com",
3465
+ "jarszone.com",
3457
3466
  "jasminesports.com",
3458
3467
  "jasonbella.online",
3459
3468
  "jasonswheels.org",
@@ -3481,6 +3490,7 @@
3481
3490
  "jetable.net",
3482
3491
  "jetable.org",
3483
3492
  "jetable.pp.ua",
3493
+ "ji-a.cc",
3484
3494
  "ji5.de",
3485
3495
  "ji6.de",
3486
3496
  "ji7.de",
@@ -3507,6 +3517,7 @@
3507
3517
  "jmail.ovh",
3508
3518
  "jmail.ro",
3509
3519
  "jmods.me",
3520
+ "jmt2469.xyz",
3510
3521
  "jnxjn.com",
3511
3522
  "jobbikszimpatizans.hu",
3512
3523
  "jobbrett.com",
@@ -3688,6 +3699,7 @@
3688
3699
  "kommunity.biz",
3689
3700
  "kon42.com",
3690
3701
  "konican.com",
3702
+ "konigyuan.us.ci",
3691
3703
  "konterkulo.com",
3692
3704
  "kontoko.org",
3693
3705
  "konultant-jurist.ru",
@@ -4163,6 +4175,7 @@
4163
4175
  "mailosaur.net",
4164
4176
  "mailox.fun",
4165
4177
  "mailp.org",
4178
+ "mailphu.com",
4166
4179
  "mailpick.biz",
4167
4180
  "mailpluss.com",
4168
4181
  "mailpooch.com",
@@ -4224,6 +4237,7 @@
4224
4237
  "makemenaughty.club",
4225
4238
  "makemetheking.com",
4226
4239
  "makertrial.com",
4240
+ "makoli.sbs",
4227
4241
  "malahov.de",
4228
4242
  "malayalamdtp.com",
4229
4243
  "malioter.pro",
@@ -4611,6 +4625,7 @@
4611
4625
  "muonwhila.com",
4612
4626
  "muralin-aja.com",
4613
4627
  "muratec.eu.org",
4628
+ "muratreis.icu",
4614
4629
  "musiccode.me",
4615
4630
  "musiku.studio",
4616
4631
  "mutant.me",
@@ -5747,6 +5762,7 @@
5747
5762
  "sengkuni.xx.kg",
5748
5763
  "senseless-entertainment.com",
5749
5764
  "sentra-premium.com",
5765
+ "senvas.me",
5750
5766
  "senyan.fun",
5751
5767
  "seosnaps.com",
5752
5768
  "seqerc.com",
@@ -5934,6 +5950,7 @@
5934
5950
  "sofort-mail.de",
5935
5951
  "sofortmail.de",
5936
5952
  "sofrge.com",
5953
+ "softbank.id",
5937
5954
  "softkey-office.ru",
5938
5955
  "softlitceg.com",
5939
5956
  "softpls.asia",
@@ -6276,6 +6293,7 @@
6276
6293
  "telegmail.com",
6277
6294
  "teleworm.com",
6278
6295
  "teleworm.us",
6296
+ "teliedge.com",
6279
6297
  "teligmail.site",
6280
6298
  "telimail.online",
6281
6299
  "tellos.xyz",
@@ -6923,6 +6941,7 @@
6923
6941
  "vipepe.com",
6924
6942
  "vipmail.name",
6925
6943
  "vipmail.pw",
6944
+ "vipmba.cc",
6926
6945
  "vips.pics",
6927
6946
  "vipxm.net",
6928
6947
  "viralplays.com",
@@ -6963,6 +6982,7 @@
6963
6982
  "vkr1.com",
6964
6983
  "vkrr.ru",
6965
6984
  "vkrr.store",
6985
+ "vladhub.buzz",
6966
6986
  "vlemi.com",
6967
6987
  "vlrregulatory.com",
6968
6988
  "vmailing.info",
@@ -7178,6 +7198,7 @@
7178
7198
  "worldcoins.top",
7179
7199
  "worldlylife.store",
7180
7200
  "worldspace.link",
7201
+ "woshiemoman.cloud-ip.cc",
7181
7202
  "wpdork.com",
7182
7203
  "wpg.im",
7183
7204
  "wralawfirm.com",
@@ -2,5 +2,5 @@
2
2
  "env": {
3
3
  "TEST_EXTENDED_MODE": ""
4
4
  },
5
- "updatedAt": "2026-06-24T05:54:36.511Z"
5
+ "updatedAt": "2026-06-25T02:48:55.457Z"
6
6
  }
@@ -2,11 +2,11 @@ WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
2
2
  WARNING: sun.misc.Unsafe::objectFieldOffset has been called by akka.util.Unsafe (file:/Users/ian/.cache/firebase/emulators/firebase-database-emulator-v4.11.2.jar)
3
3
  WARNING: Please consider reporting this to the maintainers of class akka.util.Unsafe
4
4
  WARNING: sun.misc.Unsafe::objectFieldOffset will be removed in a future release
5
- 22:54:49.838 [NamespaceSystem-akka.actor.default-dispatcher-4] INFO akka.event.slf4j.Slf4jLogger - Slf4jLogger started
6
- 22:54:49.941 [main] INFO com.firebase.server.forge.App$ - Listening at 127.0.0.1:9000
7
- 22:55:01.943 [NamespaceSystem-akka.actor.default-dispatcher-4] INFO com.firebase.core.namespace.NamespaceActor - demo-backend-manager-default-rtdb successfully activated FBKV (SurveyIdle(0)) wait: 72ms, init: 0ms
8
- 22:55:01.972 [NamespaceSystem-blocking-namespace-operation-dispatcher-6] INFO com.firebase.core.namespace.StateManager - Namespace demo-backend-manager-default-rtdb status Active to Active
9
- 22:55:13.547 [Thread-0] INFO com.firebase.server.forge.App$ - Attempting graceful shutdown.
10
- 22:55:13.583 [NamespaceSystem-akka.actor.default-dispatcher-4] INFO com.firebase.core.namespace.Terminator$Terminator - 1 actors left to terminate: demo-backend-manager-default-rtdb
11
- 22:55:13.589 [NamespaceSystem-akka.actor.default-dispatcher-5] INFO com.firebase.core.namespace.NamespaceActor - stopped namespace actor for demo-backend-manager-default-rtdb
12
- 22:55:13.617 [Thread-0] INFO com.firebase.server.forge.App$ - Graceful shutdown complete.
5
+ 19:49:03.848 [NamespaceSystem-akka.actor.default-dispatcher-5] INFO akka.event.slf4j.Slf4jLogger - Slf4jLogger started
6
+ 19:49:03.974 [main] INFO com.firebase.server.forge.App$ - Listening at 127.0.0.1:9000
7
+ 19:49:14.892 [NamespaceSystem-akka.actor.default-dispatcher-5] INFO com.firebase.core.namespace.NamespaceActor - demo-backend-manager-default-rtdb successfully activated FBKV (SurveyIdle(0)) wait: 85ms, init: 0ms
8
+ 19:49:14.925 [NamespaceSystem-blocking-namespace-operation-dispatcher-7] INFO com.firebase.core.namespace.StateManager - Namespace demo-backend-manager-default-rtdb status Active to Active
9
+ 19:49:27.315 [Thread-0] INFO com.firebase.server.forge.App$ - Attempting graceful shutdown.
10
+ 19:49:27.342 [NamespaceSystem-akka.actor.default-dispatcher-6] INFO com.firebase.core.namespace.Terminator$Terminator - 1 actors left to terminate: demo-backend-manager-default-rtdb
11
+ 19:49:27.346 [NamespaceSystem-akka.actor.default-dispatcher-6] INFO com.firebase.core.namespace.NamespaceActor - stopped namespace actor for demo-backend-manager-default-rtdb
12
+ 19:49:27.349 [Thread-0] INFO com.firebase.server.forge.App$ - Graceful shutdown complete.
@@ -2,7 +2,7 @@ WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
2
2
  WARNING: sun.misc.Unsafe::allocateMemory has been called by io.netty.util.internal.PlatformDependent0$2 (file:/Users/ian/.cache/firebase/emulators/cloud-firestore-emulator-v1.21.0.jar)
3
3
  WARNING: Please consider reporting this to the maintainers of class io.netty.util.internal.PlatformDependent0$2
4
4
  WARNING: sun.misc.Unsafe::allocateMemory will be removed in a future release
5
- Jun 23, 2026 10:54:48 PM com.google.cloud.datastore.emulator.firestore.websocket.WebSocketServer start
5
+ Jun 24, 2026 7:49:02 PM com.google.cloud.datastore.emulator.firestore.websocket.WebSocketServer start
6
6
  INFO: Started WebSocket server on ws://127.0.0.1:9150
7
7
 
8
8
  API endpoint: http://127.0.0.1:8080
@@ -20,117 +20,113 @@ If you are running a Firestore in Datastore Mode project, run:
20
20
  Note: Support for Datastore Mode is in preview. If you encounter any bugs please file at https://github.com/firebase/firebase-tools/issues.
21
21
  Dev App Server is now running.
22
22
 
23
- Jun 23, 2026 10:55:01 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
23
+ Jun 24, 2026 7:49:14 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
24
24
  INFO: Detected non-HTTP/2 connection.
25
- Jun 23, 2026 10:55:01 PM io.grpc.netty.TcpMetrics loadEpollInfo
25
+ Jun 24, 2026 7:49:14 PM io.grpc.netty.TcpMetrics loadEpollInfo
26
26
  INFO: Epoll available during static init of TcpMetrics:false
27
- Jun 23, 2026 10:55:01 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
27
+ Jun 24, 2026 7:49:14 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
28
28
  INFO: Detected HTTP/2 connection.
29
- Jun 23, 2026 10:55:03 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
29
+ Jun 24, 2026 7:49:16 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
30
30
  INFO: Detected HTTP/2 connection.
31
- Jun 23, 2026 10:55:03 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
31
+ Jun 24, 2026 7:49:16 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
32
32
  INFO: Detected HTTP/2 connection.
33
- Jun 23, 2026 10:55:11 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
33
+ Jun 24, 2026 7:49:25 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
34
34
  INFO: Detected HTTP/2 connection.
35
- Jun 23, 2026 10:55:11 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
35
+ Jun 24, 2026 7:49:25 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
36
36
  INFO: Detected HTTP/2 connection.
37
- Jun 23, 2026 10:55:11 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
37
+ Jun 24, 2026 7:49:25 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
38
38
  INFO: Detected HTTP/2 connection.
39
- Jun 23, 2026 10:55:11 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
39
+ Jun 24, 2026 7:49:25 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
40
40
  INFO: Detected HTTP/2 connection.
41
- Jun 23, 2026 10:55:11 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
41
+ Jun 24, 2026 7:49:25 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
42
42
  INFO: Detected HTTP/2 connection.
43
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
43
+ Jun 24, 2026 7:49:25 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
44
44
  INFO: Detected HTTP/2 connection.
45
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
45
+ Jun 24, 2026 7:49:25 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
46
46
  INFO: Detected HTTP/2 connection.
47
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
47
+ Jun 24, 2026 7:49:25 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
48
48
  INFO: Detected HTTP/2 connection.
49
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
49
+ Jun 24, 2026 7:49:25 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
50
50
  INFO: Detected HTTP/2 connection.
51
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
51
+ Jun 24, 2026 7:49:25 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
52
52
  INFO: Detected HTTP/2 connection.
53
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
53
+ Jun 24, 2026 7:49:25 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
54
54
  INFO: Detected HTTP/2 connection.
55
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
55
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
56
56
  INFO: Detected HTTP/2 connection.
57
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
57
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
58
58
  INFO: Detected HTTP/2 connection.
59
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
59
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
60
60
  INFO: Detected HTTP/2 connection.
61
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
61
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
62
62
  INFO: Detected HTTP/2 connection.
63
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
63
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
64
64
  INFO: Detected HTTP/2 connection.
65
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
65
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
66
66
  INFO: Detected HTTP/2 connection.
67
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
67
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
68
68
  INFO: Detected HTTP/2 connection.
69
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
69
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
70
70
  INFO: Detected HTTP/2 connection.
71
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
71
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
72
72
  INFO: Detected HTTP/2 connection.
73
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
73
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
74
74
  INFO: Detected HTTP/2 connection.
75
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
75
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
76
76
  INFO: Detected HTTP/2 connection.
77
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
77
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
78
78
  INFO: Detected HTTP/2 connection.
79
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
79
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
80
80
  INFO: Detected HTTP/2 connection.
81
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
81
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
82
82
  INFO: Detected HTTP/2 connection.
83
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
83
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
84
84
  INFO: Detected HTTP/2 connection.
85
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
85
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
86
86
  INFO: Detected HTTP/2 connection.
87
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
87
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
88
88
  INFO: Detected HTTP/2 connection.
89
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
89
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
90
90
  INFO: Detected HTTP/2 connection.
91
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
91
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
92
92
  INFO: Detected HTTP/2 connection.
93
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
93
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
94
94
  INFO: Detected HTTP/2 connection.
95
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
95
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
96
96
  INFO: Detected HTTP/2 connection.
97
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
97
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
98
98
  INFO: Detected HTTP/2 connection.
99
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
99
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
100
100
  INFO: Detected HTTP/2 connection.
101
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
101
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
102
102
  INFO: Detected HTTP/2 connection.
103
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
103
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
104
104
  INFO: Detected HTTP/2 connection.
105
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
105
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
106
106
  INFO: Detected HTTP/2 connection.
107
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
107
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
108
108
  INFO: Detected HTTP/2 connection.
109
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
109
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
110
110
  INFO: Detected HTTP/2 connection.
111
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
111
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
112
112
  INFO: Detected HTTP/2 connection.
113
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
113
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
114
114
  INFO: Detected HTTP/2 connection.
115
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
115
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
116
116
  INFO: Detected HTTP/2 connection.
117
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
117
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
118
118
  INFO: Detected HTTP/2 connection.
119
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
119
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
120
120
  INFO: Detected HTTP/2 connection.
121
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
121
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
122
122
  INFO: Detected HTTP/2 connection.
123
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
123
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
124
124
  INFO: Detected HTTP/2 connection.
125
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
125
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
126
126
  INFO: Detected HTTP/2 connection.
127
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
127
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
128
128
  INFO: Detected HTTP/2 connection.
129
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
130
- INFO: Detected HTTP/2 connection.
131
- Jun 23, 2026 10:55:12 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
132
- INFO: Detected HTTP/2 connection.
133
- Jun 23, 2026 10:55:13 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
129
+ Jun 24, 2026 7:49:26 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
134
130
  INFO: Detected HTTP/2 connection.
135
131
  *** shutting down gRPC server since JVM is shutting down
136
132
  *** server shut down
@@ -1,6 +1,6 @@
1
1
  This is the Google Pub/Sub fake.
2
2
  Implementation may be incomplete or differ from the real system.
3
- Jun 23, 2026 10:54:55 PM com.google.cloud.pubsub.testing.v1.Main main
3
+ Jun 24, 2026 7:49:07 PM com.google.cloud.pubsub.testing.v1.Main main
4
4
  INFO: IAM integration is disabled. IAM policy methods and ACL checks are not supported
5
5
  SLF4J(W): No SLF4J providers were found.
6
6
  SLF4J(W): Defaulting to no-operation (NOP) logger implementation
@@ -9,9 +9,9 @@ WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
9
9
  WARNING: sun.misc.Unsafe::allocateMemory has been called by io.netty.util.internal.PlatformDependent0$2 (file:/Users/ian/.cache/firebase/emulators/pubsub-emulator-0.8.33/pubsub-emulator/lib/cloud-pubsub-emulator-0.8.33-all.jar)
10
10
  WARNING: Please consider reporting this to the maintainers of class io.netty.util.internal.PlatformDependent0$2
11
11
  WARNING: sun.misc.Unsafe::allocateMemory will be removed in a future release
12
- Jun 23, 2026 10:54:55 PM com.google.cloud.pubsub.testing.v1.Main main
12
+ Jun 24, 2026 7:49:08 PM com.google.cloud.pubsub.testing.v1.Main main
13
13
  INFO: Server started, listening on 8085
14
- Jun 23, 2026 10:55:01 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
14
+ Jun 24, 2026 7:49:14 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
15
15
  INFO: Detected HTTP/2 connection.
16
16
  *** shutting down gRPC server since JVM is shutting down
17
17
  *** server shut down
@@ -0,0 +1,42 @@
1
+ # ========== Default Values ==========
2
+ # GitHub
3
+ GH_TOKEN=""
4
+
5
+ # Backend Manager
6
+ BACKEND_MANAGER_KEY=""
7
+ BACKEND_MANAGER_WEBHOOK_KEY=""
8
+ BACKEND_MANAGER_NAMESPACE=""
9
+ BACKEND_MANAGER_OPENAI_API_KEY=""
10
+ BACKEND_MANAGER_ANTHROPIC_API_KEY=""
11
+
12
+ # AI
13
+ OPENAI_API_KEY=""
14
+ ANTHROPIC_API_KEY=""
15
+ CLAUDE_CODE_OAUTH_TOKEN=""
16
+
17
+ # Payment Processors
18
+ PAYPAL_CLIENT_SECRET=""
19
+ STRIPE_SECRET_KEY=""
20
+ CHARGEBEE_API_KEY=""
21
+ COINBASE_API_KEY=""
22
+
23
+ # Analytics
24
+ GOOGLE_ANALYTICS_SECRET=""
25
+ META_ACCESS_TOKEN=""
26
+ TIKTOK_ACCESS_TOKEN=""
27
+
28
+ # Security
29
+ CLOUDFLARE_TOKEN=""
30
+ RECAPTCHA_SECRET_KEY=""
31
+
32
+ # Email & Newsletter
33
+ SENDGRID_API_KEY=""
34
+ BEEHIIV_API_KEY=""
35
+ NEVERBOUNCE_API_KEY=""
36
+ ZEROBOUNCE_API_KEY=""
37
+ UNSUBSCRIBE_HMAC_KEY=""
38
+ APOLLO_API_KEY=""
39
+
40
+ # ========== Custom Values ==========
41
+ # Add your custom environment variables below this line
42
+ # ...
@@ -0,0 +1,60 @@
1
+ # ========== Default Values ==========
2
+ # macOS
3
+ .DS_Store
4
+
5
+ # Logs
6
+ logs
7
+ *.log
8
+ npm-debug.log*
9
+ yarn-debug.log*
10
+ yarn-error.log*
11
+ firebase-debug.log*
12
+
13
+ # Firebase cache
14
+ .firebase/
15
+
16
+ # Firebase config
17
+ .firebaserc
18
+
19
+ # Runtime data
20
+ pids
21
+ *.pid
22
+ *.seed
23
+ *.pid.lock
24
+
25
+ # Coverage directory
26
+ coverage
27
+ .nyc_output
28
+
29
+ # Dependency directories
30
+ node_modules/
31
+
32
+ # Optional npm cache directory
33
+ .npm
34
+
35
+ # Optional eslint cache
36
+ .eslintcache
37
+
38
+ # Output of 'npm pack'
39
+ *.tgz
40
+
41
+ # Yarn Integrity file
42
+ .yarn-integrity
43
+
44
+ # dotenv environment variables file
45
+ .env*
46
+
47
+ # BEM specific
48
+ .runtimeconfig.json
49
+ service-account*.json
50
+ bem-reload-trigger.js
51
+ .temp/
52
+ _legacy
53
+
54
+ # Root proxy (generated by setup)
55
+ /package.json
56
+ /package-lock.json
57
+
58
+ # ========== Custom Values ==========
59
+ # Add your custom ignore patterns below this line
60
+ # ...