.env.example 920 B

1234567891011121314151617181920
  1. # Copy to .env and tweak. Defaults match what Bambuddy expects out of the box.
  2. # Host ports. Bambuddy's virtual-printer feature already binds 3000 and
  3. # 3002, so the OrcaSlicer sidecar sits on 3003. Move them if you run
  4. # this stack on a different host or want to free those ports for VPs.
  5. ORCA_API_PORT=3003
  6. BAMBU_API_PORT=3001
  7. # Sidecar image tag. Default is `latest` (current stable release).
  8. # Pinning options:
  9. # bambuddy-X.Y.Z pin to the sidecar image that shipped with Bambuddy X.Y.Z
  10. # (e.g. SIDECAR_TAG=bambuddy-0.2.5)
  11. # daily track the bambuddy:daily channel
  12. SIDECAR_TAG=latest
  13. # Largest model file the sidecars will accept for a slice, in megabytes.
  14. # Raise it if a big multi-colour project is rejected as "too large" -- the
  15. # cap is enforced inside the sidecar, so no reverse-proxy body limit affects
  16. # it. Leave it unset for the 512 MB default.
  17. #MAX_MODEL_UPLOAD_MB=512