dev.env 934 B

1234567891011121314151617181920212223
  1. # Initial Setup
  2. # 1. Copy the dev.env file to .env:
  3. # cp dev.env .env
  4. # 2. Alternatively, you can generate the .env file using the "Generate Env File" task in VSCode.
  5. # Configuring Cloud Type
  6. # This configuration file is used to specify the cloud type and the necessary configurations for each cloud type. The available options are:
  7. # Local: 0
  8. # Supabase: 1
  9. # AppFlowy Cloud: 2
  10. CLOUD_TYPE=0
  11. # Supabase Configuration
  12. # If you're using Supabase (CLOUD_TYPE=1), you need to provide the following configurations:
  13. SUPABASE_URL=replace-with-your-supabase-url
  14. SUPABASE_ANON_KEY=replace-with-your-supabase-key
  15. # AppFlowy Cloud Configuration
  16. # If you're using AppFlowy Cloud (CLOUD_TYPE=2), you need to provide the following configurations:
  17. APPFLOWY_CLOUD_BASE_URL=replace-with-your-appflowy-cloud-url
  18. APPFLOWY_CLOUD_WS_BASE_URL=replace-with-your-appflowy-cloud-ws-url
  19. APPFLOWY_CLOUD_GOTRUE_URL=replace-with-your-appflowy-cloud-gotrue-url