mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-28 08:16:22 +02:00
♻️ Switch to turborepo (#532)
This commit is contained in:
parent
41ef81aa75
commit
0a836aeec7
419 changed files with 2300 additions and 2504 deletions
64
apps/web/declarations/environment.d.ts
vendored
Normal file
64
apps/web/declarations/environment.d.ts
vendored
Normal file
|
@ -0,0 +1,64 @@
|
|||
declare global {
|
||||
namespace NodeJS {
|
||||
interface ProcessEnv {
|
||||
/**
|
||||
* Full database connection string
|
||||
*/
|
||||
DATABASE_URL: string;
|
||||
/**
|
||||
* "development" or "production"
|
||||
*/
|
||||
NODE_ENV: "development" | "production";
|
||||
/**
|
||||
* Can be "false" or a relative path eg. "/new"
|
||||
*/
|
||||
LANDING_PAGE: string;
|
||||
/**
|
||||
* Must be 32 characters long
|
||||
*/
|
||||
SECRET_PASSWORD: string;
|
||||
/**
|
||||
* "1" to turn on maintenance mode
|
||||
*/
|
||||
NEXT_PUBLIC_MAINTENANCE_MODE?: string;
|
||||
/**
|
||||
* Posthog API key
|
||||
*/
|
||||
NEXT_PUBLIC_POSTHOG_API_KEY?: string;
|
||||
/**
|
||||
* Posthog API host
|
||||
*/
|
||||
NEXT_PUBLIC_POSTHOG_API_HOST?: string;
|
||||
/**
|
||||
* Crisp website ID
|
||||
*/
|
||||
NEXT_PUBLIC_CRISP_WEBSITE_ID?: string;
|
||||
/**
|
||||
* Users of your instance will see this as their support email
|
||||
*/
|
||||
SUPPORT_EMAIL: string;
|
||||
/**
|
||||
* Host address of the SMTP server
|
||||
*/
|
||||
SMTP_HOST: string;
|
||||
/**
|
||||
* Email address or user if authentication is required
|
||||
*/
|
||||
SMTP_USER: string;
|
||||
/**
|
||||
* Password if authentication is required
|
||||
*/
|
||||
SMTP_PWD: string;
|
||||
/**
|
||||
* "true" to use SSL
|
||||
*/
|
||||
SMTP_SECURE: string;
|
||||
/**
|
||||
* Port number of the SMTP server
|
||||
*/
|
||||
SMTP_PORT: string;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export {};
|
Loading…
Add table
Add a link
Reference in a new issue