working frontend build

This commit is contained in:
2021-07-07 17:12:04 -05:00
parent be789ae882
commit 9869125965
11 changed files with 621 additions and 41 deletions

View File

@ -3,6 +3,7 @@ const ncp = require('ncp').ncp;
import { createDatabase, writeMigrationsToFile } from './database/database-creator';
import { createViews } from './views/views-creator';
import {createFrontend} from "./frontend-services/fe-service-creator";
import {removeTemplateFiles} from "./helpers";
class SystemGenService {
@ -44,6 +45,7 @@ class SystemGenService {
public cleanup() {
// TODO: remove 'component/{{component}}' folder
}
}
@ -54,7 +56,7 @@ interface SystemDef {
name: string;
storage: StorageDef;
components: ComponentDef[];
// TODO: add Views, ACLs, Behaviors, UX
// TODO: add ACLs, Behaviors, UX
}
interface StorageDef {