.env.example 717 B

12345678910111213141516171819202122
  1. # Ollama URL for the backend to connect
  2. # The path '/ollama' will be redirected to the specified backend URL
  3. OLLAMA_BASE_URL='http://localhost:11434'
  4. OPENAI_API_BASE_URL=''
  5. OPENAI_API_KEY=''
  6. # AUTOMATIC1111_BASE_URL="http://localhost:7860"
  7. # For production, you should only need one host as
  8. # fastapi serves the svelte-kit built frontend and backend from the same host and port.
  9. # To test with CORS locally, you can set something like
  10. # CORS_ALLOW_ORIGIN='http://localhost:5173;http://localhost:8080'
  11. CORS_ALLOW_ORIGIN='*'
  12. # For production you should set this to match the proxy configuration (127.0.0.1)
  13. FORWARDED_ALLOW_IPS='*'
  14. # DO NOT TRACK
  15. SCARF_NO_ANALYTICS=true
  16. DO_NOT_TRACK=true
  17. ANONYMIZED_TELEMETRY=false