Scaffold light twenty app dev container (#18734)

as title
This commit is contained in:
martmull
2026-03-18 20:10:54 +01:00
committed by GitHub
parent 394a3cef15
commit 2f095c8903
44 changed files with 861 additions and 371 deletions
@@ -217,6 +217,7 @@ export class DevModeOrchestrator {
message: 'Failed to create development application',
status: 'error',
},
{ message: JSON.stringify(createResult, null, 2), status: 'error' },
]);
this.state.updatePipeline({ status: 'error' });
@@ -36,12 +36,11 @@ export class CheckServerOrchestratorStep {
this.state.applyStepEvents([
{
message:
'Cannot reach Twenty at localhost:3000.\n\n' +
' Start a local server with Docker:\n' +
' curl -sL https://raw.githubusercontent.com/twentyhq/twenty/main/packages/twenty-docker/docker-compose.yml -o docker-compose.yml\n' +
' docker compose up -d\n\n' +
' Or from the monorepo:\n' +
' yarn start\n\n' +
'Cannot reach Twenty server.\n\n' +
' Start a local server:\n' +
' yarn twenty server start\n\n' +
' Check server status:\n' +
' yarn twenty server status\n\n' +
' Waiting for server...',
status: 'error',
},