## Summary - **Config as source of truth**: `~/.twenty/config.json` is now the single source of truth for SDK authentication — env var fallbacks have been removed from the config resolution chain. - **Test instance support**: `twenty server start --test` spins up a dedicated Docker instance on port 2021 with its own config (`config.test.json`), so integration tests don't interfere with the dev environment. - **API key auth for marketplace**: Removed `UserAuthGuard` from `MarketplaceResolver` so API key tokens (workspace-scoped) can call `installMarketplaceApp`. - **CI for example apps**: Added monorepo CI workflows for `hello-world` and `postcard` example apps to catch regressions. - **Simplified CI**: All `ci-create-app-e2e` and example app workflows now use a shared `spawn-twenty-app-dev-test` action (Docker-based) instead of building the server from source. Consolidated auth env vars to `TWENTY_API_URL` + `TWENTY_API_KEY`. - **Template publishing fix**: `create-twenty-app` template now correctly preserves `.github/` and `.gitignore` through npm publish (stored without leading dot, renamed after copy). ## Test plan - [x] CI SDK (lint, typecheck, unit, integration, e2e) — all green - [x] CI Example App Hello World — green - [x] CI Example App Postcard — green - [x] CI Create App E2E minimal — green - [x] CI Front, CI Server, CI Shared — green
102 lines
2.5 KiB
TypeScript
102 lines
2.5 KiB
TypeScript
import * as fs from 'fs-extra';
|
|
import { join } from 'path';
|
|
import { v4 } from 'uuid';
|
|
|
|
import createTwentyAppPackageJson from 'package.json';
|
|
import chalk from 'chalk';
|
|
|
|
const SRC_FOLDER = 'src';
|
|
|
|
export const copyBaseApplicationProject = async ({
|
|
appName,
|
|
appDisplayName,
|
|
appDescription,
|
|
appDirectory,
|
|
}: {
|
|
appName: string;
|
|
appDisplayName: string;
|
|
appDescription: string;
|
|
appDirectory: string;
|
|
}) => {
|
|
console.log(chalk.gray('Generating application project...'));
|
|
await fs.copy(join(__dirname, './constants/template'), appDirectory);
|
|
|
|
await renameDotfiles({ appDirectory });
|
|
|
|
await generateUniversalIdentifiers({
|
|
appDisplayName,
|
|
appDescription,
|
|
appDirectory,
|
|
});
|
|
|
|
await updatePackageJson({ appName, appDirectory });
|
|
};
|
|
|
|
// npm strips dotfiles/dotdirs (.gitignore, .github/) from published packages,
|
|
// so we store them without the leading dot and rename after copying.
|
|
const renameDotfiles = async ({ appDirectory }: { appDirectory: string }) => {
|
|
const renames = [
|
|
{ from: 'gitignore', to: '.gitignore' },
|
|
{ from: 'github', to: '.github' },
|
|
];
|
|
|
|
for (const { from, to } of renames) {
|
|
const sourcePath = join(appDirectory, from);
|
|
|
|
if (await fs.pathExists(sourcePath)) {
|
|
await fs.rename(sourcePath, join(appDirectory, to));
|
|
}
|
|
}
|
|
};
|
|
|
|
const generateUniversalIdentifiers = async ({
|
|
appDisplayName,
|
|
appDescription,
|
|
appDirectory,
|
|
}: {
|
|
appDisplayName: string;
|
|
appDescription: string;
|
|
appDirectory: string;
|
|
}) => {
|
|
const universalIdentifiersPath = join(
|
|
appDirectory,
|
|
SRC_FOLDER,
|
|
'constants',
|
|
'universal-identifiers.ts',
|
|
);
|
|
|
|
const universalIdentifiersFileContent = await fs.readFile(
|
|
universalIdentifiersPath,
|
|
'utf-8',
|
|
);
|
|
|
|
await fs.writeFile(
|
|
universalIdentifiersPath,
|
|
universalIdentifiersFileContent
|
|
.replace('DISPLAY-NAME-TO-BE-GENERATED', appDisplayName)
|
|
.replace('DESCRIPTION-TO-BE-GENERATED', appDescription)
|
|
.replace(/UUID-TO-BE-GENERATED/g, () => v4()),
|
|
);
|
|
};
|
|
|
|
const updatePackageJson = async ({
|
|
appName,
|
|
appDirectory,
|
|
}: {
|
|
appName: string;
|
|
appDirectory: string;
|
|
}) => {
|
|
const packageJson = await fs.readJson(join(appDirectory, 'package.json'));
|
|
|
|
packageJson.name = appName;
|
|
packageJson.dependencies['twenty-sdk'] = createTwentyAppPackageJson.version;
|
|
packageJson.dependencies['twenty-client-sdk'] =
|
|
createTwentyAppPackageJson.version;
|
|
|
|
await fs.writeFile(
|
|
join(appDirectory, 'package.json'),
|
|
JSON.stringify(packageJson, null, 2),
|
|
'utf8',
|
|
);
|
|
};
|