Renamed PORT env variable
All checks were successful
Build and Push to Registry / build-and-push (push) Successful in 53s
All checks were successful
Build and Push to Registry / build-and-push (push) Successful in 53s
This commit is contained in:
parent
abdc383ae1
commit
be6277edd3
@ -35,6 +35,6 @@ DECLINED= 4000 0025 0000 3155 #Paiement refusé
|
||||
|
||||
# Configuration serveur
|
||||
APP_HOST=
|
||||
PORT=
|
||||
BACK_PORT=
|
||||
API_BASE_URL=
|
||||
DEFAULT_STORAGE=
|
||||
|
@ -2,7 +2,7 @@ export const emailConfig = {
|
||||
MAILCHIMP_API_KEY: process.env.MAILCHIMP_API_KEY,
|
||||
MAILCHIMP_KEY: process.env.MAILCHIMP_KEY,
|
||||
MAILCHIMP_LIST_ID: process.env.MAILCHIMP_LIST_ID,
|
||||
PORT: parseInt(process.env.PORT || '8080'),
|
||||
PORT: parseInt(process.env.BACK_PORT || '8080'),
|
||||
FROM_EMAIL: 'no-reply@lecoffre.io',
|
||||
FROM_NAME: 'LeCoffre.io'
|
||||
};
|
||||
|
@ -2,7 +2,7 @@ import * as dotenv from 'dotenv';
|
||||
dotenv.config();
|
||||
|
||||
export const config = {
|
||||
port: process.env.PORT || "",
|
||||
port: process.env.BACK_PORT || "",
|
||||
defaultStorage: process.env.DEFAULT_STORAGE || "",
|
||||
appHost: process.env.APP_HOST || "",
|
||||
|
||||
|
@ -8,5 +8,5 @@ export const smsConfig = {
|
||||
// SMS Factor config
|
||||
SMS_FACTOR_TOKEN: process.env.SMS_FACTOR_TOKEN,
|
||||
|
||||
PORT: parseInt(process.env.PORT || '8080')
|
||||
PORT: parseInt(process.env.BACK_PORT || '8080')
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user