settings.bat 1.7 KB

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