backend:
  name: github
  repo: joaoelikinol/corretor
  branch: main
  auth_type: implicit

media_folder: "images/uploads"
public_folder: "/images/uploads"

collections:
  - name: "imoveis"
    label: "Imóveis"
    folder: "content/imoveis"
    create: true
    slug: "{{slug}}"
    fields:
      - { label: "Título do Imóvel", name: "title", widget: "string" }
      - { label: "Preço (ex: R$ 850.000)", name: "price", widget: "string" }
      - { label: "Tipo / Categoria", name: "category", widget: "select", options: ["rural", "urbano", "aluguel"] }
      - { label: "Foto Principal", name: "image", widget: "image" }
      - { label: "Quartos", name: "bedrooms", widget: "string", required: false }
      - { label: "Banheiros", name: "bathrooms", widget: "string", required: false }
      - { label: "Área (m² ou Alqueires)", name: "area", widget: "string" }
      - { label: "Localização / Bairro", name: "location", widget: "string" }
      - { label: "Descrição Completa", name: "body", widget: "markdown" }
