mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-09-01 15:37:16 +00:00
14 lines
320 B
TypeScript
14 lines
320 B
TypeScript
export const DEFAULT_APP_TITLE = 'Paperless-ngx'
|
|
|
|
export const environment = {
|
|
production: false,
|
|
apiBaseUrl: 'http://localhost:8001/api/',
|
|
apiVersion: '10',
|
|
appTitle: DEFAULT_APP_TITLE,
|
|
tag: 'e2e',
|
|
version: 'E2E',
|
|
webSocketHost: 'localhost:8001',
|
|
webSocketProtocol: 'ws:',
|
|
webSocketBaseUrl: '/ws/',
|
|
}
|