settings.env 1.3 KB

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