Remove demo from readme as users can create free trial on production (#9952)
We have recently introduced the possibility to sign up on Twenty cloud without having to input a credit card which makes the demo.twenty.com useless. Deprecating it!
This commit is contained in:
11
README.md
11
README.md
@ -24,16 +24,9 @@
|
|||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
# Demo
|
# Installation
|
||||||
|
|
||||||
Go to <a href="https://demo.twenty.com/">demo.twenty.com</a> and login with the following credentials:
|
See:
|
||||||
|
|
||||||
```
|
|
||||||
email: tim@apple.dev
|
|
||||||
password: Applecar2025
|
|
||||||
```
|
|
||||||
|
|
||||||
See also:
|
|
||||||
🚀 [Self-hosting](https://twenty.com/developers/section/self-hosting)
|
🚀 [Self-hosting](https://twenty.com/developers/section/self-hosting)
|
||||||
🖥️ [Local Setup](https://twenty.com/developers/local-setup)
|
🖥️ [Local Setup](https://twenty.com/developers/local-setup)
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,7 @@ import { expect, test } from '@playwright/test';
|
|||||||
test('Check if demo account is working properly @demo-only', async ({
|
test('Check if demo account is working properly @demo-only', async ({
|
||||||
page,
|
page,
|
||||||
}) => {
|
}) => {
|
||||||
await page.goto('https://demo.twenty.com/');
|
await page.goto('https://app.twenty-next.com/');
|
||||||
await page.getByRole('button', { name: 'Continue With Email' }).click();
|
await page.getByRole('button', { name: 'Continue With Email' }).click();
|
||||||
await page.getByRole('button', { name: 'Continue', exact: true }).click();
|
await page.getByRole('button', { name: 'Continue', exact: true }).click();
|
||||||
await page.getByRole('button', { name: 'Sign in' }).click();
|
await page.getByRole('button', { name: 'Sign in' }).click();
|
||||||
|
|||||||
@ -19,7 +19,7 @@ test('Login test', async ({ loginPage, page }) => {
|
|||||||
async () => {
|
async () => {
|
||||||
await page.waitForLoadState('networkidle');
|
await page.waitForLoadState('networkidle');
|
||||||
if (
|
if (
|
||||||
page.url().includes('demo.twenty.com') ||
|
page.url().includes('app.twenty-next.com') ||
|
||||||
!page.url().includes('app.localhost:3001')
|
!page.url().includes('app.localhost:3001')
|
||||||
) {
|
) {
|
||||||
await loginPage.clickLoginWithEmail();
|
await loginPage.clickLoginWithEmail();
|
||||||
|
|||||||
@ -1,8 +1,8 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
|
import { usePathname, useRouter } from 'next/navigation';
|
||||||
import React, { useEffect, useState } from 'react';
|
import React, { useEffect, useState } from 'react';
|
||||||
import { TbApi, TbChevronLeft, TbLink } from 'react-icons/tb';
|
import { TbApi, TbChevronLeft, TbLink } from 'react-icons/tb';
|
||||||
import { usePathname, useRouter } from 'next/navigation';
|
|
||||||
|
|
||||||
// @ts-expect-error Migration loader as text not passing warnings
|
// @ts-expect-error Migration loader as text not passing warnings
|
||||||
import tokenForm from '!css-loader!./token-form.css';
|
import tokenForm from '!css-loader!./token-form.css';
|
||||||
@ -71,8 +71,8 @@ const TokenForm = ({
|
|||||||
let url: string;
|
let url: string;
|
||||||
if (locationSetting === 'production') {
|
if (locationSetting === 'production') {
|
||||||
url = 'https://api.twenty.com';
|
url = 'https://api.twenty.com';
|
||||||
} else if (locationSetting === 'demo') {
|
} else if (locationSetting === 'next') {
|
||||||
url = 'https://api-demo.twenty.com';
|
url = 'https://api.twenty-next.com';
|
||||||
} else if (locationSetting === 'localhost') {
|
} else if (locationSetting === 'localhost') {
|
||||||
url = 'http://localhost:3000';
|
url = 'http://localhost:3000';
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@ -44,14 +44,6 @@ Modern web browser (Firefox, Chrome, Safari and Edge on their latest version are
|
|||||||
|
|
||||||
Internet connection (Offline mode isn't yet supported).
|
Internet connection (Offline mode isn't yet supported).
|
||||||
|
|
||||||
## Demo
|
|
||||||
|
|
||||||
If you wish to try Twenty before creating your own account, go to demo.twenty.com and login with the following credentials:
|
|
||||||
|
|
||||||
|
|
||||||
`email: tim@apple.dev`\
|
|
||||||
`password: Applecar2025`
|
|
||||||
|
|
||||||
## Vision
|
## Vision
|
||||||
Creating a good CRM is hard because it's a balancing act.
|
Creating a good CRM is hard because it's a balancing act.
|
||||||
For each business, the requirements seem straightforward, yet everyone's needs are distinct.
|
For each business, the requirements seem straightforward, yet everyone's needs are distinct.
|
||||||
|
|||||||
Reference in New Issue
Block a user