frontend meta update
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" href="images/icons/android/android-launchericon-48-48.png" />
|
||||
<link rel="icon" href="images/icons/android/48B.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Twenty</title>
|
||||
</head>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" href="images/icons/android/android-launchericon-48-48.png" />
|
||||
<link rel="icon" href="images/icons/android/48B.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Twenty</title>
|
||||
</head>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" href="images/icons/android/android-launchericon-48-48.png" />
|
||||
<link rel="icon" href="images/icons/android/48B.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Twenty</title>
|
||||
<style>
|
||||
|
||||
@ -2,7 +2,10 @@ name: twenty
|
||||
|
||||
services:
|
||||
server:
|
||||
image: twentycrm/twenty:${TAG:-latest}
|
||||
build:
|
||||
context: ../../ # root of the project
|
||||
dockerfile: packages/twenty-docker/twenty/Dockerfile
|
||||
image: twentycrm/twenty:local
|
||||
volumes:
|
||||
- server-local-data:/app/packages/twenty-server/.local-storage
|
||||
ports:
|
||||
@ -21,42 +24,22 @@ services:
|
||||
STORAGE_S3_ENDPOINT: ${STORAGE_S3_ENDPOINT}
|
||||
|
||||
APP_SECRET: ${APP_SECRET:-replace_me_with_a_random_string}
|
||||
# MESSAGING_PROVIDER_GMAIL_ENABLED: ${MESSAGING_PROVIDER_GMAIL_ENABLED}
|
||||
# CALENDAR_PROVIDER_GOOGLE_ENABLED: ${CALENDAR_PROVIDER_GOOGLE_ENABLED}
|
||||
# AUTH_GOOGLE_CLIENT_ID: ${AUTH_GOOGLE_CLIENT_ID}
|
||||
# AUTH_GOOGLE_CLIENT_SECRET: ${AUTH_GOOGLE_CLIENT_SECRET}
|
||||
# AUTH_GOOGLE_CALLBACK_URL: ${AUTH_GOOGLE_CALLBACK_URL}
|
||||
# AUTH_GOOGLE_APIS_CALLBACK_URL: ${AUTH_GOOGLE_APIS_CALLBACK_URL}
|
||||
|
||||
# CALENDAR_PROVIDER_MICROSOFT_ENABLED: ${CALENDAR_PROVIDER_MICROSOFT_ENABLED}
|
||||
# MESSAGING_PROVIDER_MICROSOFT_ENABLED: ${MESSAGING_PROVIDER_MICROSOFT_ENABLED}
|
||||
# AUTH_MICROSOFT_ENABLED: ${AUTH_MICROSOFT_ENABLED}
|
||||
# AUTH_MICROSOFT_CLIENT_ID: ${AUTH_MICROSOFT_CLIENT_ID}
|
||||
# AUTH_MICROSOFT_CLIENT_SECRET: ${AUTH_MICROSOFT_CLIENT_SECRET}
|
||||
# AUTH_MICROSOFT_CALLBACK_URL: ${AUTH_MICROSOFT_CALLBACK_URL}
|
||||
# AUTH_MICROSOFT_APIS_CALLBACK_URL: ${AUTH_MICROSOFT_APIS_CALLBACK_URL}
|
||||
|
||||
# EMAIL_FROM_ADDRESS: ${EMAIL_FROM_ADDRESS:-contact@yourdomain.com}
|
||||
# EMAIL_FROM_NAME: ${EMAIL_FROM_NAME:-"John from YourDomain"}
|
||||
# EMAIL_SYSTEM_ADDRESS: ${EMAIL_SYSTEM_ADDRESS:-system@yourdomain.com}
|
||||
# EMAIL_DRIVER: ${EMAIL_DRIVER:-smtp}
|
||||
# EMAIL_SMTP_HOST: ${EMAIL_SMTP_HOST:-smtp.gmail.com}
|
||||
# EMAIL_SMTP_PORT: ${EMAIL_SMTP_PORT:-465}
|
||||
# EMAIL_SMTP_USER: ${EMAIL_SMTP_USER:-}
|
||||
# EMAIL_SMTP_PASSWORD: ${EMAIL_SMTP_PASSWORD:-}
|
||||
|
||||
depends_on:
|
||||
db:
|
||||
condition: service_healthy
|
||||
healthcheck:
|
||||
test: curl --fail http://localhost:3000/healthz
|
||||
test: curl --fail http://localhost:3000/healthz || exit 1
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 20
|
||||
restart: always
|
||||
|
||||
worker:
|
||||
image: twentycrm/twenty:${TAG:-latest}
|
||||
build:
|
||||
context: ../../
|
||||
dockerfile: packages/twenty-docker/twenty/Dockerfile
|
||||
image: twentycrm/twenty:local
|
||||
volumes:
|
||||
- server-local-data:/app/packages/twenty-server/.local-storage
|
||||
command: ["yarn", "worker:prod"]
|
||||
@ -64,8 +47,8 @@ services:
|
||||
PG_DATABASE_URL: postgres://${PG_DATABASE_USER:-postgres}:${PG_DATABASE_PASSWORD:-postgres}@${PG_DATABASE_HOST:-db}:${PG_DATABASE_PORT:-5432}/default
|
||||
SERVER_URL: ${SERVER_URL}
|
||||
REDIS_URL: ${REDIS_URL:-redis://redis:6379}
|
||||
DISABLE_DB_MIGRATIONS: "true" # it already runs on the server
|
||||
DISABLE_CRON_JOBS_REGISTRATION: "true" # it already runs on the server
|
||||
DISABLE_DB_MIGRATIONS: "true"
|
||||
DISABLE_CRON_JOBS_REGISTRATION: "true"
|
||||
|
||||
STORAGE_TYPE: ${STORAGE_TYPE}
|
||||
STORAGE_S3_REGION: ${STORAGE_S3_REGION}
|
||||
@ -73,29 +56,6 @@ services:
|
||||
STORAGE_S3_ENDPOINT: ${STORAGE_S3_ENDPOINT}
|
||||
|
||||
APP_SECRET: ${APP_SECRET:-replace_me_with_a_random_string}
|
||||
# MESSAGING_PROVIDER_GMAIL_ENABLED: ${MESSAGING_PROVIDER_GMAIL_ENABLED}
|
||||
# CALENDAR_PROVIDER_GOOGLE_ENABLED: ${CALENDAR_PROVIDER_GOOGLE_ENABLED}
|
||||
# AUTH_GOOGLE_CLIENT_ID: ${AUTH_GOOGLE_CLIENT_ID}
|
||||
# AUTH_GOOGLE_CLIENT_SECRET: ${AUTH_GOOGLE_CLIENT_SECRET}
|
||||
# AUTH_GOOGLE_CALLBACK_URL: ${AUTH_GOOGLE_CALLBACK_URL}
|
||||
# AUTH_GOOGLE_APIS_CALLBACK_URL: ${AUTH_GOOGLE_APIS_CALLBACK_URL}
|
||||
|
||||
# CALENDAR_PROVIDER_MICROSOFT_ENABLED: ${CALENDAR_PROVIDER_MICROSOFT_ENABLED}
|
||||
# MESSAGING_PROVIDER_MICROSOFT_ENABLED: ${MESSAGING_PROVIDER_MICROSOFT_ENABLED}
|
||||
# AUTH_MICROSOFT_ENABLED: ${AUTH_MICROSOFT_ENABLED}
|
||||
# AUTH_MICROSOFT_CLIENT_ID: ${AUTH_MICROSOFT_CLIENT_ID}
|
||||
# AUTH_MICROSOFT_CLIENT_SECRET: ${AUTH_MICROSOFT_CLIENT_SECRET}
|
||||
# AUTH_MICROSOFT_CALLBACK_URL: ${AUTH_MICROSOFT_CALLBACK_URL}
|
||||
# AUTH_MICROSOFT_APIS_CALLBACK_URL: ${AUTH_MICROSOFT_APIS_CALLBACK_URL}
|
||||
|
||||
# EMAIL_FROM_ADDRESS: ${EMAIL_FROM_ADDRESS:-contact@yourdomain.com}
|
||||
# EMAIL_FROM_NAME: ${EMAIL_FROM_NAME:-"John from YourDomain"}
|
||||
# EMAIL_SYSTEM_ADDRESS: ${EMAIL_SYSTEM_ADDRESS:-system@yourdomain.com}
|
||||
# EMAIL_DRIVER: ${EMAIL_DRIVER:-smtp}
|
||||
# EMAIL_SMTP_HOST: ${EMAIL_SMTP_HOST:-smtp.gmail.com}
|
||||
# EMAIL_SMTP_PORT: ${EMAIL_SMTP_PORT:-465}
|
||||
# EMAIL_SMTP_USER: ${EMAIL_SMTP_USER:-}
|
||||
# EMAIL_SMTP_PASSWORD: ${EMAIL_SMTP_PASSWORD:-}
|
||||
|
||||
depends_on:
|
||||
db:
|
||||
|
||||
@ -327,27 +327,27 @@
|
||||
"sizes": "256x256"
|
||||
},
|
||||
{
|
||||
"src": "images/icons/android/android-launchericon-512-512.png",
|
||||
"src": "images/icons/android/512B.png",
|
||||
"sizes": "512x512"
|
||||
},
|
||||
{
|
||||
"src": "images/icons/android/android-launchericon-192-192.png",
|
||||
"src": "images/icons/android/192B.png",
|
||||
"sizes": "192x192"
|
||||
},
|
||||
{
|
||||
"src": "images/icons/android/android-launchericon-144-144.png",
|
||||
"src": "images/icons/android/144B.png",
|
||||
"sizes": "144x144"
|
||||
},
|
||||
{
|
||||
"src": "images/icons/android/android-launchericon-96-96.png",
|
||||
"src": "images/icons/android/96B.png",
|
||||
"sizes": "96x96"
|
||||
},
|
||||
{
|
||||
"src": "images/icons/android/android-launchericon-72-72.png",
|
||||
"src": "images/icons/android/72B.png",
|
||||
"sizes": "72x72"
|
||||
},
|
||||
{
|
||||
"src": "images/icons/android/android-launchericon-48-48.png",
|
||||
"src": "images/icons/android/48B.png",
|
||||
"sizes": "48x48"
|
||||
},
|
||||
{
|
||||
|
||||
@ -58,6 +58,6 @@ describe('getTimelineActivityAuthorFullName', () => {
|
||||
currentWorkspaceMember as CurrentWorkspaceMember,
|
||||
);
|
||||
|
||||
expect(result).toBe('Twenty');
|
||||
expect(result).toBe('MessageKnot');
|
||||
});
|
||||
});
|
||||
|
||||
@ -11,5 +11,5 @@ export const getTimelineActivityAuthorFullName = (
|
||||
? 'You'
|
||||
: `${event.workspaceMember?.name.firstName} ${event.workspaceMember?.name.lastName}`;
|
||||
}
|
||||
return 'Twenty';
|
||||
return 'MessageKnot';
|
||||
};
|
||||
|
||||
@ -187,7 +187,7 @@ describe('useCombinedFindManyRecords', () => {
|
||||
node: {
|
||||
__typename: 'Company',
|
||||
id: '1',
|
||||
name: 'Twenty',
|
||||
name: 'MessageKnot',
|
||||
},
|
||||
cursor: 'cursor1',
|
||||
},
|
||||
@ -240,7 +240,7 @@ describe('useCombinedFindManyRecords', () => {
|
||||
{
|
||||
__typename: 'Company',
|
||||
id: '1',
|
||||
name: 'Twenty',
|
||||
name: 'MessageKnot',
|
||||
},
|
||||
],
|
||||
},
|
||||
@ -470,7 +470,7 @@ describe('useCombinedFindManyRecords', () => {
|
||||
node: {
|
||||
__typename: 'Company',
|
||||
id: '1',
|
||||
name: 'Twenty',
|
||||
name: 'MessageKnot',
|
||||
},
|
||||
cursor: 'cursor1',
|
||||
},
|
||||
@ -536,7 +536,7 @@ describe('useCombinedFindManyRecords', () => {
|
||||
{
|
||||
__typename: 'Company',
|
||||
id: '1',
|
||||
name: 'Twenty',
|
||||
name: 'MessageKnot',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
@ -5,6 +5,7 @@ import { Trans, useLingui } from '@lingui/react/macro';
|
||||
import { RootStackingContextZIndices } from '@/ui/layout/constants/RootStackingContextZIndices';
|
||||
import { PageTitle } from '@/ui/utilities/page-title/components/PageTitle';
|
||||
import styled from '@emotion/styled';
|
||||
import { MainButton } from 'twenty-ui/input';
|
||||
import {
|
||||
AnimatedPlaceholder,
|
||||
AnimatedPlaceholderEmptyTextContainer,
|
||||
@ -12,7 +13,6 @@ import {
|
||||
AnimatedPlaceholderErrorSubTitle,
|
||||
AnimatedPlaceholderErrorTitle,
|
||||
} from 'twenty-ui/layout';
|
||||
import { MainButton } from 'twenty-ui/input';
|
||||
import { UndecoratedLink } from 'twenty-ui/navigation';
|
||||
|
||||
const StyledBackDrop = styled.div`
|
||||
@ -39,7 +39,7 @@ export const NotFound = () => {
|
||||
|
||||
return (
|
||||
<>
|
||||
<PageTitle title={t`Page Not Found` + ' | Twenty'} />
|
||||
<PageTitle title={t`Page Not Found` + ' | MessageKnot'} />
|
||||
<StyledBackDrop>
|
||||
<AnimatedPlaceholderErrorContainer>
|
||||
<AnimatedPlaceholder type="error404" />
|
||||
|
||||
@ -42,7 +42,7 @@ describe('title-utils', () => {
|
||||
expect(getPageTitleFromPath('/settings/general')).toBe(
|
||||
SettingsPageTitles.General,
|
||||
);
|
||||
expect(getPageTitleFromPath('/')).toBe('Twenty');
|
||||
expect(getPageTitleFromPath('/random')).toBe('Twenty');
|
||||
expect(getPageTitleFromPath('/')).toBe('MessageKnot');
|
||||
expect(getPageTitleFromPath('/random')).toBe('MessageKnot');
|
||||
});
|
||||
});
|
||||
|
||||
@ -12,6 +12,7 @@ export enum SettingsPageTitles {
|
||||
Apis = 'API Keys - Settings',
|
||||
Webhooks = 'Webhooks - Settings',
|
||||
Integration = 'Integrations - Settings',
|
||||
Roles = 'Roles - Settings',
|
||||
ServerlessFunctions = 'Functions - Settings',
|
||||
General = 'General - Settings',
|
||||
Default = 'Settings',
|
||||
@ -73,6 +74,6 @@ export const getPageTitleFromPath = (pathname: string): string => {
|
||||
case SettingsPathPrefixes.General:
|
||||
return SettingsPageTitles.General;
|
||||
default:
|
||||
return 'Twenty';
|
||||
return 'MessageKnot';
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user