forked from ufal/dspace-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.local
More file actions
35 lines (27 loc) · 1.03 KB
/
.env.local
File metadata and controls
35 lines (27 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# CLARIN-DSpace local development configuration
# See: https://github.com/ufal/clarin-dspace/wiki/NewInstallation
# Instance identifier (allows running multiple DSpace instances on the same machine)
INSTANCE=0
# Host configuration (SSL must be false for localhost)
DSPACE_HOST=localhost
DSPACE_SSL=false
HOST_IP=0.0.0.0
# Ports
DSPACE_REST_PORT=8080
UI_PORT=4000
# URL namespaces
DSPACE_REST_NAMESPACE=/server
DSPACE_UI_NAMESPACE=/
# Composed URLs (used by both frontend and backend)
REST_URL=http://${DSPACE_HOST}:${DSPACE_REST_PORT}${DSPACE_REST_NAMESPACE}
UI_URL=http://${DSPACE_HOST}:${UI_PORT}${DSPACE_UI_NAMESPACE}
# Docker image configuration
# See available tags: https://github.com/ufal/clarin-dspace/wiki/Docker-Tags
DOCKER_OWNER=ufal
DSPACE_VER=dspace-7_x
DSPACE_UI_IMAGE=${DOCKER_OWNER}/dspace-angular:$DSPACE_VER
DSPACE_REST_IMAGE=${DOCKER_OWNER}/dspace:$DSPACE_VER
# Forces x86 emulation (no ARM64 images available)
DOCKER_DEFAULT_PLATFORM=linux/amd64
# Frontend command (dev mode is required for localhost)
FE_CMD=yarn start:dev