remixed v0
This commit is contained in:
1
app/config/config.client.ts
Normal file
1
app/config/config.client.ts
Normal file
@ -0,0 +1 @@
|
||||
export default {};
|
40
app/config/config.server.ts
Normal file
40
app/config/config.server.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import invariant from "tiny-invariant";
|
||||
|
||||
invariant(typeof process.env.APP_BASE_URL === "string", `Please define the "APP_BASE_URL" environment variable`);
|
||||
invariant(
|
||||
typeof process.env.INVITATION_TOKEN_SECRET === "string",
|
||||
`Please define the "INVITATION_TOKEN_SECRET" environment variable`,
|
||||
);
|
||||
invariant(typeof process.env.SESSION_SECRET === "string", `Please define the "SESSION_SECRET" environment variable`);
|
||||
invariant(typeof process.env.AWS_SES_REGION === "string", `Please define the "AWS_SES_REGION" environment variable`);
|
||||
invariant(
|
||||
typeof process.env.AWS_SES_ACCESS_KEY_ID === "string",
|
||||
`Please define the "AWS_SES_ACCESS_KEY_ID" environment variable`,
|
||||
);
|
||||
invariant(
|
||||
typeof process.env.AWS_SES_ACCESS_KEY_SECRET === "string",
|
||||
`Please define the "AWS_SES_ACCESS_KEY_SECRET" environment variable`,
|
||||
);
|
||||
invariant(
|
||||
typeof process.env.AWS_SES_FROM_EMAIL === "string",
|
||||
`Please define the "AWS_SES_FROM_EMAIL" environment variable`,
|
||||
);
|
||||
invariant(typeof process.env.REDIS_URL === "string", `Please define the "REDIS_URL" environment variable`);
|
||||
|
||||
export default {
|
||||
app: {
|
||||
baseUrl: process.env.APP_BASE_URL,
|
||||
invitationTokenSecret: process.env.INVITATION_TOKEN_SECRET,
|
||||
sessionSecret: process.env.SESSION_SECRET,
|
||||
},
|
||||
awsSes: {
|
||||
awsRegion: process.env.AWS_SES_REGION,
|
||||
accessKeyId: process.env.AWS_SES_ACCESS_KEY_ID,
|
||||
secretAccessKey: process.env.AWS_SES_ACCESS_KEY_SECRET,
|
||||
fromEmail: process.env.AWS_SES_FROM_EMAIL,
|
||||
},
|
||||
redis: {
|
||||
url: process.env.REDIS_URL,
|
||||
password: process.env.REDIS_PASSWORD,
|
||||
},
|
||||
};
|
Reference in New Issue
Block a user