Bootstrap Your App
Create an app module that wires core services and the modules you need.
import { BootstrapModule } from '@quik/bootstrap';
import { CoreModule } from '@quik/core';
export class AppModule extends BootstrapModule {
public modules = [CoreModule];
}
From here, add HTTP, database, and the other modules you require.