# Don't want to expose your supabase credentials? you have two options # 1. Use a .env file to specify SUPABASE_URL and SUPABASE_ANON_KEY # 2. Specify --url and --key in the CLI (ex. supadart -u -k ) SUPABASE_URL: SUPABASE_ANON_KEY: # Enums in your database? map them here (Case Sensitive) # Please take a look at the documentation to see how to work with enums enums: # mood: [happy, sad, neutral, excited, angry] crime_rates: ["critical", "high", "low", "medium"] crime_status: ["closed", "open", "resolved", "under_investigation", "unresolved"] session_status: ["active", "completed"] status_contact_messages: ["closed", "new", "read", "replied"] unit_type: ["other", "polda", "polres", "polsek"] # Optional, where to place the generated classes files default: ./lib/models/ output: lib/models/ # Set to true, if you want to generate separated files for each classes separated: true # Set to true, if you are not using Flutter, just normal Dart project dart: false # Optional, used to map table names to class names(case-sensitive) mappings: _prisma_migrations: PrismaMigrations # books: book # categories: category # children: child # people: person # Optional, used to exclude methods from generated classes, comment out to include them exclude: # - toJson # - copyWith - New