updated environment file

This commit is contained in:
lotte
2020-04-22 07:44:29 +02:00
parent ad4b7fa254
commit 2a353efa5f
2 changed files with 4 additions and 2 deletions

18
docker/environment.dev.ts Normal file
View File

@@ -0,0 +1,18 @@
/*
* The contents of this file are subject to the license and copyright
* detailed in the LICENSE and NOTICE files at the root of the source
* tree and available online at
*
* http://www.dspace.org/license/
*/
import { GlobalConfig } from '../src/config/global-config.interface';
export const environment: Partial<GlobalConfig> = {
rest: {
ssl: false,
host: 'localhost',
port: 8080,
// NOTE: Space is capitalized because 'namespace' is a reserved string in TypeScript
nameSpace: '/server/api'
}
};