Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Kodi.Kodiak.Strategies.StrategyServer.exe.config

App Settings

Code Block
languagexml
	<appSettings>
		<add key="ConnectionString" value="Server=xxxx;Initial Catalog=KODIAK;User Id=Kodiak;Password=xxxx;" />
		<add key="ActiveMQPath" value="tcp://localhost:61616" />
		<add key="ActiveMQClientId" value="StrategyServer" />
        
        <!-- PROD environment -->
		<add key="ApiUrl" value="https://api.livemarketdata.com" />		
		<add key="AuthUrl" value="https://users.livemarketdata.com/v2/token" />
		
		<!-- Test Environment
		<add key="ApiUrl" value="https://api-staging.livemarketdata.com" />		
		<add key="AuthUrl" value="https://users-staging.livemarketdata.com/v2/token" />
		-->
		<add key="AuthUsername" value="username@kodi.is" />
		<add key="AuthPassword" value="xxxxxxx" />
 
		<add key="log4net.Internal.Debug" value="false" />
	</appSettings>

...