settings.env 1.6 KB

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