.env.example 1.1 KB

12345678910111213141516171819
  1. # ── Ports ─────────────────────────────────────────────────────────────────────
  2. # Change these if the default ports conflict with other local services.
  3. ORCHESTRATOR_PORT=1717
  4. SEQ_INTERP_PORT=7475
  5. SPECTROMETER_PORT=8000
  6. RECONSTRUCTOR_PORT=8081
  7. SPECTROSCOPY_PORT=8002
  8. # ── Orchestrator mode ──────────────────────────────────────────────────────────
  9. # plug — stub tasks (instant responses, no hardware required)
  10. # real — live tasks (calls spectrometer at 8000 and reconstructor at 8081)
  11. ORCHESTRATOR_MODE=plug
  12. # ── Image versions ─────────────────────────────────────────────────────────────
  13. ORCHESTRATOR_VERSION=dev
  14. SEQ_INTERP_VERSION=dev
  15. SPECTROSCOPY_VERSION=dev
  16. RECONSTRUCTOR_VERSION=dev
  17. SPECTROMETER_VERSION=dev