mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-28 00:36:06 +00:00
major ui tweaks and refactoring
This commit is contained in:
@@ -1,8 +1,20 @@
|
||||
export type env = {
|
||||
SERVER_EXTERNAL_PORT: string;
|
||||
NEXT_PORT: string;
|
||||
ENVIRONMENT: string;
|
||||
EMAIL_ENABLED: string;
|
||||
DISABLE_SIGNUP_WITHOUT_INVITE?: string;
|
||||
DISABLE_USER_CREATE_ORG?: string;
|
||||
export type Env = {
|
||||
app: {
|
||||
environment: string;
|
||||
version: string;
|
||||
},
|
||||
server: {
|
||||
externalPort: string;
|
||||
nextPort: string;
|
||||
sessionCookieName: string;
|
||||
resourceSessionCookieName: string;
|
||||
},
|
||||
email: {
|
||||
emailEnabled: boolean;
|
||||
},
|
||||
flags: {
|
||||
disableSignupWithoutInvite: boolean;
|
||||
disableUserCreateOrg: boolean;
|
||||
emailVerificationRequired: boolean;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user