mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 23:43:01 +00:00
9 lines
298 B
TypeScript
9 lines
298 B
TypeScript
import { environment } from '../src/environments/environment';
|
|
|
|
import * as child from 'child_process';
|
|
|
|
child.spawn(
|
|
`ng serve --host ${environment.ui.host} --port ${environment.ui.port} --servePath ${environment.ui.nameSpace} --ssl ${environment.ui.ssl}`,
|
|
{ stdio:'inherit', shell: true }
|
|
);
|