Skip to content

Commit 044cd27

Browse files
committed
chore: add Clerk env variable
1 parent aaf81ba commit 044cd27

4 files changed

Lines changed: 5 additions & 1 deletion

File tree

src/wwwroot/env/INT.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
cuitServiceBaseUrl: "https://apisint.fromdoppler.net/cuit",
44
hostSmtp: "int-smtp-relay.fromdoppler.net",
55
portSmtp: "2525",
6+
useClerkAuthentication: true,
67
});

src/wwwroot/env/PROD.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
cuitServiceBaseUrl: "https://apis.fromdoppler.com/cuit",
44
hostSmtp: "smtp.dopplerrelay.com",
55
portSmtp: "587",
6+
useClerkAuthentication: false,
67
});

src/wwwroot/env/QA.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
cuitServiceBaseUrl: "https://apisqa.fromdoppler.net/cuit",
44
hostSmtp: "qa-smtp-relay.fromdoppler.net",
55
portSmtp: "2525",
6+
useClerkAuthentication: false,
67
});

src/wwwroot/env/development.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
baseUrl: 'http://localhost:34751',
33
cuitServiceBaseUrl: 'https://apisint.fromdoppler.net/cuit',
44
hostSmtp: '127.0.0.1',
5-
portSmtp: '2525'
5+
portSmtp: '2525',
6+
useClerkAuthentication: true,
67
});

0 commit comments

Comments
 (0)