123456789101112131415161718192021222324252627282930313233343536373839 |
- #
- # IBM Confidential
- #
- # OCO Source Materials
- #
- # BI and PM: BI
- #
- # (C) Copyright IBM Corp. 2017, 2018
- #
- # The source code for this program is not published or otherwise
- # divested of its trade secrets, irrespective of what has been
- # deposited with the U.S. Copyright Office.
- #
- # prevent JGit from trying to exec bash or native git to fetch the users local configuration.
- # This is unnecessary, creates noise in the logs, and has been seen to cause hangs.
- # See RTC 138548
- GIT_CONFIG_NOSYSTEM=no
- #
- ########## These env are for stand alone service ###########
- #
- # Set this flag to true if this server is for stand alone service
- RUNNING_ON_CLOUD=
- #
- # Set the host of a flipper server.
- FLIPPER_HOST=
- #
- # Set the port of a flipper server. It is the value of property "configGroupMemberSyncPort".
- FLIPPER_PORT=
- #
- # remote BI service endpoint for user authentication
- # e.g. BI_ENDPOINT=http://biserver:9300/bi
- BI_ENDPOINT=
- #
- #
- # Set this flag to true if this server has P2PD installed and configured.
- # When this flag is set to true, we'll start transfering the speicified global settings
- # (e.g. the active CM url : contentManager) from legacy configuration storage to Flipper storage
- # for global access
- RUNNING_WITH_P2PD=
|