Add migration services
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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"
|
||||
Reference in New Issue
Block a user