settings.env 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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 port that the ODir service binds to.
  20. export ODIR_PORT=5197
  21. # The path to the SQLite database file. The file and DB schema are auto-created
  22. # if they doesn't exist.
  23. export DB_PATH=oscar.sqlite
  24. # Disable password check and auto-create new users at login time. Useful for
  25. # quickly creating new accounts during development without having to register
  26. # new users via the management API.
  27. export DISABLE_AUTH=true
  28. # Set logging granularity. Possible values: 'trace', 'debug', 'info', 'warn',
  29. # 'error'.
  30. export LOG_LEVEL=info
  31. # The hostname that AIM clients connect to in order to reach OSCAR services
  32. # (auth, BOS, BUCP, etc). Make sure the hostname is reachable by all clients.
  33. # For local development, the default loopback address should work provided the
  34. # server and AIM client(s) are running on the same machine. For LAN-only
  35. # clients, a private IP address (e.g. 192.168..) or hostname should suffice. For
  36. # clients connecting over the Internet, specify your public IP address and
  37. # ensure that TCP ports 5190-5197 are open on your firewall.
  38. export OSCAR_HOST=127.0.0.1