Advertisement
Guest User

Untitled

a guest
Apr 11th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. NODE_ENV=development
  2. FEATURE_DOTENV=true
  3. DEBUG=AiX:*
  4. LOG_LEVEL=debug
  5. PORT=5000
  6. # Chat env vars
  7. CHAT_FEATURE_NGROK_TUNNEL=true
  8. # Api env
  9. DASHBOARD_API_SECRET = 'secret'
  10. API_SECRET = 'secret'
  11. # AiX Services
  12. AIX_MARKET_DATA_API=https://qa-marketdata-service.private.apps.pcf.ai-x.ai/marketdata
  13. AIX_ORDERBOOK_SERVICE=https://qa-orderbook-service.private.apps.pcf.ai-x.ai/orderbook
  14. AIX_QUOTE_SERVICE=https://qa-quote-service.private.apps.pcf.ai-x.ai/quote
  15. AIX_USER_SERVICE=https://qa-user-service.private.apps.pcf.ai-x.ai/user
  16. # Quote env
  17. QUOTE_EXPIRATION_IN_SECONDS = 120
  18. # Set this if not in development mode and tunnel not used
  19. TELEGRAM_WEBHOOK_HOST_URL=http://www.xxxxx.xxxx # This is not set for local development
  20. TELEGRAM_WEBHOOK_ENDPOINT=/telegram/webhook1234
  21. TELEGRAM_BOT_USERNAME=test_local_aix_bot
  22. TELEGRAM_TOKEN=712978188:AAE4-71dKOQ7Qif_v3sATrSZc1U8BNeOM7A
  23. # MONGO DB
  24. MONGODB_URI=mongodb://localhost:27017/aix-bot-api3
  25. UNIT_TEST_MONGODB_URI=mongodb://localhost:27017/aix-bot-api-test
  26. # REDIS
  27. REDIS_URL=redis://127.0.0.1
  28. # MOB env vars
  29. # if we want to have an prefix added to the order security; this way orders get isolated
  30. MOB_USE_ORDER_PREFIX=false
  31. MOB_PRICE_REQUEST_TIMEOUT_SECONDS=120
  32. MOB_PRICE_UPDATE_NOTIFICATION_DELAY_SECONDS=30
  33. # Watson
  34. WATSON_WS_ID=09a1d0c3-cdac-4f3f-9a6c-d9800b80718b
  35. WATSON_USERNAME=apikey
  36. WATSON_PASSWORD=TCYbT-NlcGzikAy_YOfOYX8g0uSffJsZFJjun7MJkRNL
  37. WATSON_URL=https://gateway-fra.watsonplatform.net/assistant/api
  38. WATSON_VERSION_DATE=2018-07-10
  39. # Runner configuration
  40. NODEID=aix
  41. LOGLEVEL=info
  42. NAMESPACE=AIX
  43. ACTIVE_MQ_HOST=mqtt://127.0.0.1:1883
  44. REQUESTTIMEOUT=5000
  45. CIRCUITBREAKER_ENABLED=true
  46. METRICS=true
  47. STATISTICS=true
  48. # AWS configuration
  49. AWS_S3_ACCESS_KEY = AKIAJ4IR3N7YXZG2QG6Q
  50. AWS_S3_SECRET_ACCESS_KEY = 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
  51. AWS_S3_BUCKET_NAME = aix-dev-v1
  52. # Jira Configuration
  53. JIRA_BUG_REPORTING_ENABLED=true
  54. JIRA_URL=https://heronai.atlassian.net/rest/api/2
  55. JIRA_AUTH_TOKEN=a2llcmFuLnNhbmRlcnNvbkBoZXJvbi5haTp5NlRMZ3YzQnNUQ1E3aVlnOWxHTTU4QTI=
  56. JIRA_PROJECT_ID=10006
  57. JIRA_ISSUE_TYPE_ID=10004
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement