dev.env 889 B

123456789101112131415161718192021
  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. # Supabase: Set CLOUD_TYPE to 1
  8. # AppFlowy Cloud: Set CLOUD_TYPE to 2
  9. CLOUD_TYPE=1
  10. # Supabase Configuration
  11. # If you're using Supabase (CLOUD_TYPE=1), you need to provide the following configurations:
  12. SUPABASE_URL=replace-with-your-supabase-url
  13. SUPABASE_ANON_KEY=replace-with-your-supabase-key
  14. # AppFlowy Cloud Configuration
  15. # If you're using AppFlowy Cloud (CLOUD_TYPE=2), you need to provide the following configurations:
  16. APPFLOWY_CLOUD_BASE_URL=replace-with-your-appflowy-cloud-url
  17. APPFLOWY_CLOUD_BASE_WS_URL=replace-with-your-appflowy-cloud-ws-url