* prepare monorepo and move client to its package * create nx workspace * workspace cleanup and updates * upgrade nx workspace and fix client package * add basic codegen logic * first working build script * update nextjs app * update generated code * add koldstart core and client foundation * add basic fetch implementation to client * add stable diffusion example * remove local output image * remove keys * remove more keys * update client usage and samples * remove grpc client code and dependencies * rename base package * remove core package * continue package refactor * rename koldstart apis * refactor main function run api * add listen function stub * removed more koldstart references * build workflow added * minor doc updates - trigger workflow * nx workflow action
31 lines
802 B
JSON
31 lines
802 B
JSON
{
|
|
"name": "demo-app-e2e",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "apps/demo-app-e2e/src",
|
|
"projectType": "application",
|
|
"targets": {
|
|
"e2e": {
|
|
"executor": "@nrwl/cypress:cypress",
|
|
"options": {
|
|
"cypressConfig": "apps/demo-app-e2e/cypress.config.ts",
|
|
"devServerTarget": "demo-app:serve:development",
|
|
"testingType": "e2e"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"devServerTarget": "demo-app:serve:production"
|
|
}
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nrwl/linter:eslint",
|
|
"outputs": ["{options.outputFile}"],
|
|
"options": {
|
|
"lintFilePatterns": ["apps/demo-app-e2e/**/*.{js,ts}"]
|
|
}
|
|
}
|
|
},
|
|
"tags": [],
|
|
"implicitDependencies": ["demo-app"]
|
|
}
|