-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.env
40 lines (28 loc) · 1.57 KB
/
.env
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
36
37
38
39
40
#######################################################
# Configure these paths to your own environment.
#######################################################
# Paths for module(s) being used in stories.
# This will be where a path will start off with to find a component.
MODULE_PATH=${PORTAL_PATH}/modules/dxp/apps/search-experiences/search-experiences-web
# Path to portal root.
PORTAL_PATH=/Users/ktan/Developer/liferay-portal-master/portal
# URL where portal is running on for loading "/o" resources.
PORTAL_URL=http://127.0.0.1:8080
#######################################################
# ⚠️ Other paths that shouldn't need configuring.
#######################################################
PORTAL_LANGUAGE_LANG_MODULE_PATH=${PORTAL_PATH}/modules/apps/portal-language/portal-language-lang
LANGUAGE_PROPERTIES_PATH=/src/main/resources/content/Language.properties
# Paths for building "./static/Language.properties"
LANGUAGE_PATHS=${PORTAL_LANGUAGE_LANG_MODULE_PATH}${LANGUAGE_PROPERTIES_PATH}
# Path for easily linking to learn resources.
LEARN_RESOURCES_PATH=${PORTAL_PATH}/learn-resources
# Path to CSS build to resolve `@import 'atlas-variables';`
PORTAL_CSS_PATH=${PORTAL_PATH}/modules/apps/frontend-theme/frontend-theme-admin/build/css/clay
# Path to where all node_modules are built to resolve in storybook.
PORTAL_NODE_MODULES_PATH=${PORTAL_PATH}/modules/node_modules
# Path to the spritemap svg file in the context of ${STATIC_PATH}.
SPRITEMAP_PATH=icons.svg
# Path to the directory in this storybook project where static files will be
# copied into.
STATIC_PATH=/static