settings.env 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # The hostname or address at which the management API listens.
  2. export API_HOST=127.0.0.1
  3. # The port that the management API service binds to.
  4. export API_PORT=8080
  5. # The port that the Alert service binds to.
  6. export ALERT_PORT=5194
  7. # The port that the auth service binds to.
  8. export AUTH_PORT=5190
  9. # The port that the BART service binds to.
  10. export BART_PORT=5195
  11. # The port that the BOS service binds to.
  12. export BOS_PORT=5191
  13. # The port that the chat nav service binds to.
  14. export CHAT_NAV_PORT=5193
  15. # The port that the chat service binds to.
  16. export CHAT_PORT=5192
  17. # The port that the admin service binds to.
  18. export ADMIN_PORT=5196
  19. # The path to the SQLite database file. The file and DB schema are auto-created
  20. # if they doesn't exist.
  21. export DB_PATH=oscar.sqlite
  22. # Disable password check and auto-create new users at login time. Useful for
  23. # quickly creating new accounts during development without having to register
  24. # new users via the management API.
  25. export DISABLE_AUTH=true
  26. # Crash the server in case it encounters a client message type it doesn't
  27. # recognize. This makes failures obvious for debugging purposes.
  28. export FAIL_FAST=false
  29. # Set logging granularity. Possible values: 'trace', 'debug', 'info', 'warn',
  30. # 'error'.
  31. export LOG_LEVEL=info
  32. # The hostname that AIM clients connect to in order to reach OSCAR services
  33. # (auth, BOS, BUCP, etc). Make sure the hostname is reachable by all clients.
  34. # For local development, the default loopback address should work provided the
  35. # server and AIM client(s) are running on the same machine. For LAN-only
  36. # clients, a private IP address (e.g. 192.168..) or hostname should suffice. For
  37. # clients connecting over the Internet, specify your public IP address and
  38. # ensure that TCP ports 5190-5196 are open on your firewall.
  39. export OSCAR_HOST=127.0.0.1