22 lines
615 B
YAML
22 lines
615 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: development-config
|
|
namespace: bakery-ia
|
|
labels:
|
|
app.kubernetes.io/component: config
|
|
app.kubernetes.io/part-of: bakery-ia
|
|
environment: development
|
|
data:
|
|
# Set to "true" to force recreate all tables from scratch (development mode)
|
|
# This will drop all existing tables and recreate them from SQLAlchemy models
|
|
DB_FORCE_RECREATE: "false"
|
|
|
|
# Development mode flag
|
|
DEVELOPMENT_MODE: "true"
|
|
|
|
# Enable debug logging in development
|
|
DEBUG_LOGGING: "true"
|
|
|
|
# Skip migration version checking in development
|
|
SKIP_MIGRATION_VERSION_CHECK: "false" |