Structure: - control-plane/: Registries, SIMCO directives, CI/CD templates - projects/: Gamilit, ERP-Suite, Trading-Platform, Betting-Analytics - shared/: Libs catalog, knowledge-base Key features: - Centralized port, domain, database, and service registries - 23 SIMCO directives + 6 fundamental principles - NEXUS agent profiles with delegation rules - Validation scripts for workspace integrity - Dockerfiles for all services - Path aliases for quick reference 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
499 B
Bash
Executable File
14 lines
499 B
Bash
Executable File
#!/bin/bash
|
|
# ============================================================================
|
|
# DROP AND RECREATE DATABASE - OrbiQuant IA
|
|
# ============================================================================
|
|
#
|
|
# Alias para carga limpia completa.
|
|
# Wrapper de create-database.sh con --drop-first
|
|
#
|
|
# ============================================================================
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
exec "$SCRIPT_DIR/create-database.sh" --drop-first "$@"
|