@treeseed/sdk 0.8.3 → 0.8.5

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 (47) hide show
  1. package/dist/capacity.d.ts +33 -0
  2. package/dist/fixture-support.d.ts +1 -1
  3. package/dist/fixture-support.js +5 -5
  4. package/dist/managed-dependencies.js +132 -10
  5. package/dist/operations/services/bootstrap-runner.js +7 -1
  6. package/dist/operations/services/config-runtime.js +13 -4
  7. package/dist/operations/services/github-actions-verification.d.ts +3 -0
  8. package/dist/operations/services/github-actions-verification.js +3 -0
  9. package/dist/operations/services/github-api.d.ts +4 -1
  10. package/dist/operations/services/github-api.js +26 -8
  11. package/dist/operations/services/github-automation.d.ts +14 -5
  12. package/dist/operations/services/github-automation.js +45 -11
  13. package/dist/operations/services/hub-provider-launch.js +9 -8
  14. package/dist/operations/services/project-platform.d.ts +93 -210
  15. package/dist/operations/services/project-platform.js +74 -34
  16. package/dist/operations/services/railway-deploy.d.ts +25 -2
  17. package/dist/operations/services/railway-deploy.js +312 -20
  18. package/dist/operations/services/repository-save-orchestrator.d.ts +8 -0
  19. package/dist/operations/services/repository-save-orchestrator.js +40 -3
  20. package/dist/operations/services/runtime-paths.d.ts +1 -0
  21. package/dist/operations/services/runtime-paths.js +3 -1
  22. package/dist/operations/services/runtime-tools.d.ts +1 -0
  23. package/dist/operations/services/runtime-tools.js +2 -0
  24. package/dist/operations/services/template-registry.js +3 -0
  25. package/dist/platform/contracts.d.ts +9 -0
  26. package/dist/platform/deploy-config.js +28 -0
  27. package/dist/platform/env.yaml +1 -745
  28. package/dist/platform/environment.js +69 -9
  29. package/dist/reconcile/builtin-adapters.js +7 -2
  30. package/dist/scripts/install-managed-dependencies.js +12 -0
  31. package/dist/scripts/tenant-workflow-action.js +11 -9
  32. package/dist/scripts/test-scaffold.js +3 -1
  33. package/dist/scripts/workflow-commands.test.js +10 -6
  34. package/dist/scripts/workspace-command-e2e.js +1 -1
  35. package/dist/treeseed/template-catalog/templates/starter-basic/template/package.json +1 -0
  36. package/dist/treeseed/template-catalog/templates/starter-basic/template/src/api/server.js +1 -1
  37. package/dist/treeseed/template-catalog/templates/starter-basic/template/treeseed.site.yaml +7 -6
  38. package/dist/treeseed/template-catalog/templates/starter-basic/template.config.json +6 -0
  39. package/dist/workflow/operations.d.ts +41 -8
  40. package/dist/workflow/operations.js +119 -24
  41. package/dist/workflow/runs.js +31 -0
  42. package/package.json +1 -1
  43. package/templates/github/deploy-processing.workflow.yml +120 -0
  44. package/templates/github/deploy-web.workflow.yml +116 -0
  45. package/templates/github/hosted-project.workflow.yml +4 -4
  46. package/templates/github/deploy.managed.workflow.yml +0 -208
  47. package/templates/github/deploy.workflow.yml +0 -746
@@ -87,55 +87,6 @@ entries:
87
87
  - machine-config
88
88
  - process-env
89
89
  defaultValueRef: githubRepositoryVisibilityDefault
90
- TREESEED_HOSTED_HUBS_GITHUB_OWNER:
91
- label: Hosted repository owner
92
- group: github
93
- description: GitHub user or organization where TreeSeed-managed hosted hub repositories are created.
94
- howToGet: Enter the GitHub organization or owner dedicated to hosted Knowledge Hub repositories. This can be different from the Market source repository owner.
95
- sensitivity: plain
96
- targets:
97
- - local-runtime
98
- - railway-var
99
- scopes:
100
- - staging
101
- - prod
102
- storage: shared
103
- requirement: conditional
104
- relevanceRef: marketControlPlaneEnabled
105
- requiredWhenRef: marketControlPlaneEnabled
106
- purposes:
107
- - config
108
- - deploy
109
- validation:
110
- kind: nonempty
111
- sourcePriority:
112
- - machine-config
113
- - process-env
114
- TREESEED_HOSTED_HUBS_GITHUB_TOKEN:
115
- label: Hosted repository access token
116
- group: github
117
- description: GitHub token used only by TreeSeed-controlled workers to create and configure TreeSeed-managed hosted hub repositories.
118
- howToGet: Create a GitHub token or app credential for the hosted hub repository owner with repository create/configure permissions, then store it here. Do not sync this value to team repositories or GitHub Actions secrets.
119
- sensitivity: secret
120
- targets:
121
- - local-runtime
122
- - railway-secret
123
- scopes:
124
- - staging
125
- - prod
126
- storage: shared
127
- requirement: conditional
128
- relevanceRef: marketControlPlaneEnabled
129
- requiredWhenRef: marketControlPlaneEnabled
130
- purposes:
131
- - config
132
- - deploy
133
- validation:
134
- kind: nonempty
135
- minLength: 8
136
- sourcePriority:
137
- - machine-config
138
- - process-env
139
90
  CLOUDFLARE_API_TOKEN:
140
91
  label: Cloudflare API token
141
92
  group: auth
@@ -162,58 +113,6 @@ entries:
162
113
  sourcePriority:
163
114
  - machine-config
164
115
  - process-env
165
- RAILWAY_API_TOKEN:
166
- label: Railway API token
167
- group: auth
168
- description: Primary Railway token for user or workspace scoped access, including project creation and most Treeseed-managed Railway flows.
169
- howToGet: In Railway, create a user or workspace API token that can create and manage the target project, then paste it here.
170
- sensitivity: secret
171
- targets:
172
- - local-runtime
173
- - github-secret
174
- - railway-secret
175
- scopes:
176
- - staging
177
- - prod
178
- storage: shared
179
- requirement: conditional
180
- purposes:
181
- - deploy
182
- - destroy
183
- - config
184
- validation:
185
- kind: nonempty
186
- minLength: 8
187
- sourcePriority:
188
- - machine-config
189
- - process-env
190
- relevanceRef: railwayManagedEnabled
191
- requiredWhenRef: railwayManagedEnabled
192
- TREESEED_RAILWAY_WORKSPACE:
193
- label: Railway workspace
194
- group: railway
195
- description: Railway workspace Treeseed should use when listing or creating projects during bootstrap and config reconciliation.
196
- howToGet: In Railway, use the workspace slug or name shown in the workspace switcher. Treeseed defaults this repository to knowledge-coop unless you override it here.
197
- sensitivity: plain
198
- targets:
199
- - railway-var
200
- scopes:
201
- - staging
202
- - prod
203
- storage: shared
204
- requirement: conditional
205
- purposes:
206
- - deploy
207
- - destroy
208
- - config
209
- validation:
210
- kind: nonempty
211
- sourcePriority:
212
- - machine-config
213
- - process-env
214
- defaultValueRef: railwayWorkspaceDefault
215
- relevanceRef: railwayManagedEnabled
216
- requiredWhenRef: railwayManagedEnabled
217
116
  CLOUDFLARE_ACCOUNT_ID:
218
117
  label: Cloudflare account ID
219
118
  group: cloudflare
@@ -540,647 +439,4 @@ entries:
540
439
  relevanceRef: projectRegistrationEnabled
541
440
  requiredWhenRef: projectRegistrationEnabled
542
441
  defaultValueRef: hostingProjectIdDefault
543
- TREESEED_PROJECT_RUNNER_TOKEN:
544
- label: Project runner registration token
545
- group: hosting
546
- description: Shared bearer token used by manager, worker, and agents services to authenticate against the market control plane for remote jobs and agent-pool registration.
547
- howToGet: Generate or rotate this token from the market control plane after connecting a project environment.
548
- sensitivity: secret
549
- targets:
550
- - github-secret
551
- - railway-secret
552
- scopes:
553
- - staging
554
- - prod
555
- storage: scoped
556
- requirement: conditional
557
- purposes:
558
- - deploy
559
- - config
560
- validation:
561
- kind: nonempty
562
- sourcePriority:
563
- - machine-config
564
- - process-env
565
- relevanceRef: projectRegistrationEnabled
566
- TREESEED_AGENT_POOL_MIN_WORKERS:
567
- label: Agent pool minimum workers
568
- group: hosting
569
- description: Lower autoscaling bound for the Railway worker service for one project environment.
570
- howToGet: Set this to 0 for scale-to-zero by default unless the project requires warm workers.
571
- sensitivity: plain
572
- targets:
573
- - github-variable
574
- - railway-var
575
- scopes:
576
- - staging
577
- - prod
578
- storage: scoped
579
- requirement: conditional
580
- purposes:
581
- - deploy
582
- - config
583
- validation:
584
- kind: number
585
- sourcePriority:
586
- - machine-config
587
- - process-env
588
- relevanceRef: railwayManagedEnabled
589
- defaultValueRef: agentPoolMinWorkersDefault
590
- TREESEED_AGENT_POOL_MAX_WORKERS:
591
- label: Agent pool maximum workers
592
- group: hosting
593
- description: Upper autoscaling bound for the Railway worker service for one project environment.
594
- howToGet: Choose a value that reflects your budget and expected concurrency ceiling.
595
- sensitivity: plain
596
- targets:
597
- - github-variable
598
- - railway-var
599
- scopes:
600
- - staging
601
- - prod
602
- storage: scoped
603
- requirement: conditional
604
- purposes:
605
- - deploy
606
- - config
607
- validation:
608
- kind: number
609
- sourcePriority:
610
- - machine-config
611
- - process-env
612
- relevanceRef: railwayManagedEnabled
613
- defaultValueRef: agentPoolMaxWorkersDefault
614
- TREESEED_AGENT_POOL_TARGET_QUEUE_DEPTH:
615
- label: Agent pool target queue depth
616
- group: hosting
617
- description: Desired queue depth per worker instance that the manager uses when computing worker scale.
618
- howToGet: Start with 1 for conservative scaling, then raise it only after observing stable worker latency.
619
- sensitivity: plain
620
- targets:
621
- - github-variable
622
- - railway-var
623
- scopes:
624
- - staging
625
- - prod
626
- storage: scoped
627
- requirement: conditional
628
- purposes:
629
- - deploy
630
- - config
631
- validation:
632
- kind: number
633
- sourcePriority:
634
- - machine-config
635
- - process-env
636
- relevanceRef: railwayManagedEnabled
637
- defaultValueRef: agentPoolTargetQueueDepthDefault
638
- TREESEED_AGENT_POOL_COOLDOWN_SECONDS:
639
- label: Agent pool cooldown seconds
640
- group: hosting
641
- description: Cooldown window the manager uses before scaling the worker pool down after queue activity drops.
642
- howToGet: Start with 60 seconds to prevent worker thrash in lightly bursty environments.
643
- sensitivity: plain
644
- targets:
645
- - github-variable
646
- - railway-var
647
- scopes:
648
- - staging
649
- - prod
650
- storage: scoped
651
- requirement: conditional
652
- purposes:
653
- - deploy
654
- - config
655
- validation:
656
- kind: number
657
- sourcePriority:
658
- - machine-config
659
- - process-env
660
- relevanceRef: railwayManagedEnabled
661
- defaultValueRef: agentPoolCooldownSecondsDefault
662
- TREESEED_WORKDAY_TIMEZONE:
663
- label: Workday timezone
664
- group: hosting
665
- description: IANA timezone used when evaluating active work windows for the manager.
666
- howToGet: Use the project team's operating timezone, such as America/New_York.
667
- sensitivity: plain
668
- targets:
669
- - github-variable
670
- - railway-var
671
- scopes:
672
- - staging
673
- - prod
674
- storage: scoped
675
- requirement: optional
676
- purposes:
677
- - deploy
678
- - config
679
- validation:
680
- kind: nonempty
681
- sourcePriority:
682
- - machine-config
683
- - process-env
684
- defaultValueRef: workdayTimezoneDefault
685
- TREESEED_WORKDAY_WINDOWS_JSON:
686
- label: Workday schedule JSON
687
- group: hosting
688
- description: JSON array of recurring work windows used by the manager to decide when to open or close a workday.
689
- howToGet: Provide a JSON value like [{"days":[1,2,3,4,5],"startTime":"09:00","endTime":"17:00"}].
690
- sensitivity: plain
691
- targets:
692
- - github-variable
693
- - railway-var
694
- scopes:
695
- - staging
696
- - prod
697
- storage: scoped
698
- requirement: optional
699
- purposes:
700
- - deploy
701
- - config
702
- validation:
703
- kind: nonempty
704
- sourcePriority:
705
- - machine-config
706
- - process-env
707
- defaultValueRef: workdayWindowsDefault
708
- TREESEED_WORKDAY_TASK_CREDIT_BUDGET:
709
- label: Daily task-credit budget
710
- group: hosting
711
- description: Maximum task credits the manager may allocate during one workday before it stops seeding new work.
712
- howToGet: Choose the daily throughput ceiling that matches the team's Copilot and infrastructure budget.
713
- sensitivity: plain
714
- targets:
715
- - github-variable
716
- - railway-var
717
- scopes:
718
- - staging
719
- - prod
720
- storage: scoped
721
- requirement: optional
722
- purposes:
723
- - deploy
724
- - config
725
- validation:
726
- kind: number
727
- sourcePriority:
728
- - machine-config
729
- - process-env
730
- defaultValueRef: workdayTaskCreditBudgetDefault
731
- TREESEED_MANAGER_MAX_QUEUED_TASKS:
732
- label: Manager max queued tasks
733
- group: hosting
734
- description: Upper bound on how many runnable tasks the manager will keep queued at one time.
735
- howToGet: Start small so queue top-ups stay budget-aware and incremental.
736
- sensitivity: plain
737
- targets:
738
- - github-variable
739
- - railway-var
740
- scopes:
741
- - staging
742
- - prod
743
- storage: scoped
744
- requirement: optional
745
- purposes:
746
- - deploy
747
- - config
748
- validation:
749
- kind: number
750
- sourcePriority:
751
- - machine-config
752
- - process-env
753
- defaultValueRef: managerMaxQueuedTasksDefault
754
- TREESEED_MANAGER_MAX_QUEUED_CREDITS:
755
- label: Manager max queued credits
756
- group: hosting
757
- description: Credit ceiling for runnable queued work so the manager never seeds the entire day’s budget at once.
758
- howToGet: Set this lower than or equal to the daily task-credit budget.
759
- sensitivity: plain
760
- targets:
761
- - github-variable
762
- - railway-var
763
- scopes:
764
- - staging
765
- - prod
766
- storage: scoped
767
- requirement: optional
768
- purposes:
769
- - deploy
770
- - config
771
- validation:
772
- kind: number
773
- sourcePriority:
774
- - machine-config
775
- - process-env
776
- defaultValueRef: managerMaxQueuedCreditsDefault
777
- TREESEED_MANAGER_PRIORITY_MODELS:
778
- label: Manager priority models
779
- group: hosting
780
- description: Comma-separated content models the manager should evaluate when building priority snapshots.
781
- howToGet: Leave unset to use the default objective/question/note/page/book/knowledge set.
782
- sensitivity: plain
783
- targets:
784
- - github-variable
785
- - railway-var
786
- scopes:
787
- - staging
788
- - prod
789
- storage: scoped
790
- requirement: optional
791
- purposes:
792
- - deploy
793
- - config
794
- validation:
795
- kind: nonempty
796
- sourcePriority:
797
- - machine-config
798
- - process-env
799
- defaultValueRef: managerPriorityModelsDefault
800
- TREESEED_TASK_CREDIT_WEIGHTS_JSON:
801
- label: Task credit weights JSON
802
- group: hosting
803
- description: JSON array of task-type or model-specific credit weights used when estimating daily budget consumption.
804
- howToGet: Provide a JSON value such as [{"type":"question","credits":3}].
805
- sensitivity: plain
806
- targets:
807
- - github-variable
808
- - railway-var
809
- scopes:
810
- - staging
811
- - prod
812
- storage: scoped
813
- requirement: optional
814
- purposes:
815
- - deploy
816
- - config
817
- validation:
818
- kind: nonempty
819
- sourcePriority:
820
- - machine-config
821
- - process-env
822
- defaultValueRef: taskCreditWeightsDefault
823
- TREESEED_WORKER_POOL_SCALER:
824
- label: Worker pool scaler kind
825
- group: hosting
826
- description: Selects the runtime worker scaler adapter. Hosted Railway projects should normally use railway.
827
- howToGet: Set this to railway for hosted projects or noop/manual for self-hosted environments without automatic scale control.
828
- sensitivity: plain
829
- targets:
830
- - github-variable
831
- - railway-var
832
- scopes:
833
- - staging
834
- - prod
835
- storage: scoped
836
- requirement: optional
837
- purposes:
838
- - deploy
839
- - config
840
- validation:
841
- kind: enum
842
- values:
843
- - railway
844
- - noop
845
- - manual
846
- sourcePriority:
847
- - machine-config
848
- - process-env
849
- defaultValueRef: workerPoolScalerDefault
850
- TREESEED_RAILWAY_PROJECT_ID:
851
- label: Railway project ID
852
- group: hosting
853
- visibility: system
854
- description: Railway project identifier used by runtime scaling and reconciliation helpers for the active environment.
855
- howToGet: Copy the project ID from Railway when automatic worker scaling is enabled.
856
- sensitivity: plain
857
- targets:
858
- - github-variable
859
- - railway-var
860
- scopes:
861
- - staging
862
- - prod
863
- storage: scoped
864
- requirement: optional
865
- purposes:
866
- - deploy
867
- - config
868
- validation:
869
- kind: nonempty
870
- sourcePriority:
871
- - machine-config
872
- - process-env
873
- TREESEED_RAILWAY_ENVIRONMENT_ID:
874
- label: Railway environment ID
875
- group: hosting
876
- visibility: system
877
- description: Railway environment identifier used by the runtime scaler when adjusting worker replicas.
878
- howToGet: Copy the environment ID from Railway for the matching staging or production environment.
879
- sensitivity: plain
880
- targets:
881
- - github-variable
882
- - railway-var
883
- scopes:
884
- - staging
885
- - prod
886
- storage: scoped
887
- requirement: optional
888
- purposes:
889
- - deploy
890
- - config
891
- validation:
892
- kind: nonempty
893
- sourcePriority:
894
- - machine-config
895
- - process-env
896
- TREESEED_RAILWAY_WORKER_SERVICE_ID:
897
- label: Railway worker service ID
898
- group: hosting
899
- visibility: system
900
- description: Railway service identifier for the scalable worker pool that the manager adjusts at runtime.
901
- howToGet: Copy the worker service ID from Railway after the hosted project environment is provisioned.
902
- sensitivity: plain
903
- targets:
904
- - github-variable
905
- - railway-var
906
- scopes:
907
- - staging
908
- - prod
909
- storage: scoped
910
- requirement: optional
911
- purposes:
912
- - deploy
913
- - config
914
- validation:
915
- kind: nonempty
916
- sourcePriority:
917
- - machine-config
918
- - process-env
919
- TREESEED_FORM_TOKEN_SECRET:
920
- label: Forms token secret
921
- group: forms
922
- cluster: forms-core
923
- startupProfile: core
924
- description: Signs form-related tokens and protects Treeseed forms workflows in local and hosted runtimes.
925
- howToGet: Treeseed can generate a strong random secret for you. Reuse it across environments only if that matches your security model.
926
- sensitivity: secret
927
- targets:
928
- - local-runtime
929
- - local-cloudflare
930
- - github-secret
931
- - cloudflare-secret
932
- scopes:
933
- - local
934
- - staging
935
- - prod
936
- storage: shared
937
- requirement: required
938
- purposes:
939
- - dev
940
- - save
941
- - deploy
942
- - config
943
- validation:
944
- kind: nonempty
945
- sourcePriority:
946
- - machine-config
947
- - process-env
948
- defaultValueRef: generatedSecret
949
- localDefaultValueRef: generatedSecret
950
- relevanceRef: formsEnabled
951
- TREESEED_PUBLIC_TURNSTILE_SITE_KEY:
952
- label: Turnstile site key
953
- group: forms
954
- cluster: turnstile
955
- description: Public site key used by the browser to render the Turnstile challenge when forms protection is enabled.
956
- howToGet: Create a Turnstile widget in Cloudflare Turnstile and copy the site key.
957
- sensitivity: plain
958
- targets:
959
- - github-variable
960
- - cloudflare-var
961
- scopes:
962
- - staging
963
- - prod
964
- storage: shared
965
- requirement: conditional
966
- purposes:
967
- - save
968
- - deploy
969
- - config
970
- validation:
971
- kind: nonempty
972
- sourcePriority:
973
- - machine-config
974
- - process-env
975
- relevanceRef: turnstileEnabled
976
- requiredWhenRef: turnstileNonLocal
977
- TREESEED_TURNSTILE_SECRET_KEY:
978
- label: Turnstile secret key
979
- group: forms
980
- cluster: turnstile
981
- description: Server-side Turnstile secret used to verify challenge responses.
982
- howToGet: Create a Turnstile widget in Cloudflare Turnstile and copy the secret key.
983
- sensitivity: secret
984
- targets:
985
- - github-secret
986
- - cloudflare-secret
987
- scopes:
988
- - staging
989
- - prod
990
- storage: shared
991
- requirement: conditional
992
- purposes:
993
- - save
994
- - deploy
995
- - config
996
- validation:
997
- kind: nonempty
998
- sourcePriority:
999
- - machine-config
1000
- - process-env
1001
- relevanceRef: turnstileEnabled
1002
- requiredWhenRef: turnstileNonLocal
1003
- TREESEED_SMTP_HOST:
1004
- label: SMTP host
1005
- group: smtp
1006
- cluster: smtp
1007
- description: SMTP host for Treeseed email delivery when SMTP-backed forms behavior is enabled.
1008
- howToGet: Use the SMTP hostname from your email provider or local Mailpit instance.
1009
- sensitivity: plain
1010
- targets:
1011
- - local-runtime
1012
- - local-cloudflare
1013
- - github-variable
1014
- - cloudflare-var
1015
- scopes:
1016
- - local
1017
- - staging
1018
- - prod
1019
- storage: shared
1020
- requirement: conditional
1021
- purposes:
1022
- - dev
1023
- - save
1024
- - deploy
1025
- - config
1026
- validation:
1027
- kind: nonempty
1028
- sourcePriority:
1029
- - machine-config
1030
- - process-env
1031
- localDefaultValueRef: localSmtpHostDefault
1032
- relevanceRef: smtpEnabled
1033
- requiredWhenRef: smtpNonLocal
1034
- TREESEED_SMTP_PORT:
1035
- label: SMTP port
1036
- group: smtp
1037
- cluster: smtp
1038
- description: Port used to connect to the SMTP server.
1039
- howToGet: Use the port provided by your email service, commonly 587, 465, or the Mailpit local port.
1040
- sensitivity: plain
1041
- targets:
1042
- - local-runtime
1043
- - local-cloudflare
1044
- - github-variable
1045
- - cloudflare-var
1046
- scopes:
1047
- - local
1048
- - staging
1049
- - prod
1050
- storage: shared
1051
- requirement: conditional
1052
- purposes:
1053
- - dev
1054
- - save
1055
- - deploy
1056
- - config
1057
- validation:
1058
- kind: number
1059
- sourcePriority:
1060
- - machine-config
1061
- - process-env
1062
- localDefaultValueRef: localSmtpPortDefault
1063
- relevanceRef: smtpEnabled
1064
- requiredWhenRef: smtpNonLocal
1065
- TREESEED_SMTP_USERNAME:
1066
- label: SMTP username
1067
- group: smtp
1068
- cluster: smtp
1069
- description: SMTP identity used when authenticating to the mail provider.
1070
- howToGet: Use the SMTP username or mailbox identity from your email provider.
1071
- sensitivity: plain
1072
- targets:
1073
- - local-runtime
1074
- - local-cloudflare
1075
- - github-variable
1076
- - cloudflare-var
1077
- scopes:
1078
- - local
1079
- - staging
1080
- - prod
1081
- storage: shared
1082
- requirement: conditional
1083
- purposes:
1084
- - dev
1085
- - save
1086
- - deploy
1087
- - config
1088
- validation:
1089
- kind: nonempty
1090
- sourcePriority:
1091
- - machine-config
1092
- - process-env
1093
- relevanceRef: smtpEnabled
1094
- requiredWhenRef: smtpNonLocal
1095
- TREESEED_SMTP_PASSWORD:
1096
- label: SMTP password
1097
- group: smtp
1098
- cluster: smtp
1099
- description: SMTP password or app password used for authenticated email sending.
1100
- howToGet: Use the SMTP password or app-specific password from your email provider.
1101
- sensitivity: secret
1102
- targets:
1103
- - local-runtime
1104
- - local-cloudflare
1105
- - github-secret
1106
- - cloudflare-secret
1107
- scopes:
1108
- - local
1109
- - staging
1110
- - prod
1111
- storage: shared
1112
- requirement: conditional
1113
- purposes:
1114
- - dev
1115
- - save
1116
- - deploy
1117
- - config
1118
- validation:
1119
- kind: nonempty
1120
- sourcePriority:
1121
- - machine-config
1122
- - process-env
1123
- relevanceRef: smtpEnabled
1124
- requiredWhenRef: smtpNonLocal
1125
- TREESEED_SMTP_FROM:
1126
- label: SMTP from address
1127
- group: smtp
1128
- cluster: smtp
1129
- description: Email address Treeseed uses as the sender for mail notifications.
1130
- howToGet: Use a verified sender address from your SMTP provider.
1131
- sensitivity: plain
1132
- targets:
1133
- - local-runtime
1134
- - local-cloudflare
1135
- - github-variable
1136
- - cloudflare-var
1137
- scopes:
1138
- - local
1139
- - staging
1140
- - prod
1141
- storage: shared
1142
- requirement: conditional
1143
- purposes:
1144
- - dev
1145
- - save
1146
- - deploy
1147
- - config
1148
- validation:
1149
- kind: email
1150
- sourcePriority:
1151
- - machine-config
1152
- - process-env
1153
- localDefaultValueRef: contactEmailDefault
1154
- relevanceRef: smtpEnabled
1155
- requiredWhenRef: smtpNonLocal
1156
- TREESEED_SMTP_REPLY_TO:
1157
- label: SMTP reply-to address
1158
- group: smtp
1159
- cluster: smtp
1160
- description: Reply-to address attached to Treeseed-generated emails.
1161
- howToGet: Use a monitored mailbox that should receive replies from end users.
1162
- sensitivity: plain
1163
- targets:
1164
- - local-runtime
1165
- - local-cloudflare
1166
- - github-variable
1167
- - cloudflare-var
1168
- scopes:
1169
- - local
1170
- - staging
1171
- - prod
1172
- storage: shared
1173
- requirement: conditional
1174
- purposes:
1175
- - dev
1176
- - save
1177
- - deploy
1178
- - config
1179
- validation:
1180
- kind: email
1181
- sourcePriority:
1182
- - machine-config
1183
- - process-env
1184
- localDefaultValueRef: contactEmailDefault
1185
- relevanceRef: smtpEnabled
1186
- requiredWhenRef: smtpNonLocal
442
+