This repository was archived by the owner on Jun 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +11
-28
lines changed
Expand file tree Collapse file tree 2 files changed +11
-28
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ import { AppService } from './app.service';
7171 transport : {
7272 host : process . env . SMTP_HOST ,
7373 port : parseInt ( process . env . SMTP_PORT ) ,
74- secure : true ,
74+ secure : process . env . SMTP_USE_SLS === ' true' ,
7575 auth : {
7676 user : process . env . SMTP_USER ,
7777 pass : process . env . SMTP_PASSWORD ,
Original file line number Diff line number Diff line change 4343 " SMTP_USER" ,
4444 " SMTP_PASSWORD" ,
4545 " SMTP_DEFAULT_FROM" ,
46+ " SMTP_USE_SLS" ,
4647 " COHERE_API_KEY" ,
4748 " OPENAI_API_KEY" ,
4849 " LOCAL_MODEL" ,
5859 "ui" : " tui" ,
5960 "tasks" : {
6061 "start-prod" : {
61- "dependsOn" : [
62- " db:init-resources"
63- ],
62+ "dependsOn" : [" db:init-resources" ],
6463 "cache" : false
6564 },
6665 "generate" : {
67- "dependsOn" : [
68- " ^generate"
69- ],
66+ "dependsOn" : [" ^generate" ],
7067 "cache" : false
7168 },
7269 "dev" : {
73- "dependsOn" : [
74- " generate"
75- ],
70+ "dependsOn" : [" generate" ],
7671 "interactive" : true ,
7772 "cache" : false
7873 },
7974 "build" : {
80- "dependsOn" : [
81- " ^build"
82- ],
83- "outputs" : [
84- " dist/**" ,
85- " .next/**"
86- ]
75+ "dependsOn" : [" ^build" ],
76+ "outputs" : [" dist/**" , " .next/**" ]
8777 },
8878 "lint" : {},
8979 "create-resources" : {
9080 "interactive" : true ,
9181 "cache" : false
9282 },
9383 "deploy-trigger-tasks" : {
94- "env" : [
95- " TRIGGER_ACCESS_TOKEN" ,
96- " TRIGGER_API_URL"
97- ],
84+ "env" : [" TRIGGER_ACCESS_TOKEN" , " TRIGGER_API_URL" ],
9885 "cache" : false
9986 },
10087 "trigger-dev" : {
10188 "interactive" : true ,
10289 "cache" : false
10390 },
10491 "prisma:studio" : {
105- "env" : [
106- " DATABASE_URL"
107- ]
92+ "env" : [" DATABASE_URL" ]
10893 },
10994 "migrate" : {
110- "env" : [
111- " DATABASE_URL"
112- ],
95+ "env" : [" DATABASE_URL" ],
11396 "interactive" : true ,
11497 "cache" : false
11598 }
11699 }
117- }
100+ }
You can’t perform that action at this time.
0 commit comments