-
Notifications
You must be signed in to change notification settings - Fork 21
/
.env.example
32 lines (29 loc) · 1.51 KB
/
.env.example
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
# This .env file will be used by default by docker-compose.yml
# It is also used to set the environment for running tests.
# To get started, copy this file to .env
# REACT_APP_ environment variables are inlined at build time into the bundled
# JavaScript served to the client. Do not store sensitive info in
# REACT_APP_-prefixed variables.
#
# Note: Potential source of confusion. Think of "REACT_APP_" as a variable
# namespace. For example, REACT_APP_LOGIN_PAGE_URL does not point to a login
# page in this repo, despite the fact that this repo (conda-store-ui) is a React
# app; it points instead to the server (conda-store) login page, just like
# REACT_APP_API_URL points to the server API, which is not contained in this
# repo.
REACT_APP_API_URL=http://localhost:8080/conda-store/
REACT_APP_AUTH_METHOD=cookie
REACT_APP_LOGIN_PAGE_URL=http://localhost:8080/conda-store/#?next=
REACT_APP_AUTH_TOKEN=
REACT_APP_STYLE_TYPE=green-accent
REACT_APP_CONTEXT=webapp
REACT_APP_SHOW_AUTH_BUTTON=true
REACT_APP_LOGOUT_PAGE_URL=http://localhost:8080/conda-store/logout?next=/
REACT_APP_ROUTER_TYPE=browser
# If you need to mount the React app at some URL path other than "/". This value
# is passed directly to React Router, see:
# https://reactrouter.com/en/main/routers/create-browser-router#optsbasename
# REACT_APP_URL_BASENAME="/conda-store"
# If you want to use a version other than the pinned conda-store-server version
# Set the CONDA_STORE_SERVER_VERSION to the package version that you want
# CONDA_STORE_SERVER_VERSION="2024.3.1"