settings.env 1.5 KB

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