You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.7 KiB
Bash
50 lines
1.7 KiB
Bash
# ============================================
|
|
# CONFIGURAÇÕES DO GOOGLE CLOUD
|
|
# ============================================
|
|
|
|
GOOGLE_PROJECT_ID=id_do_seu_projeto
|
|
GOOGLE_LOCATION=loc_do_seu_projeto
|
|
|
|
# ============================================
|
|
# CONFIGURAÇÕES DO BANCO DE DADOS (LOCAL)
|
|
# ============================================
|
|
# Para desenvolvimento local: PostgreSQL direto
|
|
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_USER=orquestrador
|
|
DB_PASSWORD=SUA_SENHA
|
|
DB_NAME=orquestrador_db
|
|
|
|
# ============================================
|
|
# CONFIGURAÇÕES DO BANCO DE DADOS (CLOUD SQL - PRODUÇÃO)
|
|
# ============================================
|
|
# Comentado até fazer deploy. Descomente em produção.
|
|
# CLOUD_SQL_CONNECTION_NAME=optimum-tensor-343619:us-central1:orquestrador-db
|
|
|
|
# ============================================
|
|
# CONFIGURAÇÕES DE API - GOOGLE GENERATIVE AI (Gemini)
|
|
# ============================================
|
|
# Descomente e informe a chave apenas se usar Gemini
|
|
# GOOGLE_API_KEY=sua-chave-api-aqui
|
|
|
|
# ============================================
|
|
# CONFIGURAÇÕES DE API - MOCKAROO (Dados fictícios)
|
|
# ============================================
|
|
# Obrigatório: Forneça sua chave se usar Mockaroo para dados de teste
|
|
MOCKAROO_API_KEY=sua-chave-mockaroo-aqui
|
|
MOCKAROO_BASE_URL=https://api.mockaroo.com/api
|
|
|
|
# ============================================
|
|
# CONFIGURAÇÕES DE COMPORTAMENTO
|
|
# ============================================
|
|
# Usar Mockaroo para escrita de dados (apenas testes)
|
|
USE_MOCKAROO_WRITES=false
|
|
|
|
# ============================================
|
|
# AMBIENTE E DEBUG
|
|
# ============================================
|
|
# Valores: development, staging, production
|
|
ENVIRONMENT=development
|
|
# DEBUG deve ser false em produção
|
|
DEBUG=true |