Etape 3 + refonte visuelle + corrections etape 2

This commit is contained in:
Chevallier
2026-07-07 09:57:21 +02:00
parent 17e887b268
commit 7b1a975f06
48 changed files with 6551 additions and 59 deletions

View File

@@ -25,7 +25,8 @@ TOKEN_FILE = ".gitea_token"
PROJECTS = {
"infra": "arc-infra",
"ai": "arc-ai",
"app": "arc-app"
"app": "arc-app",
"sandbox": "arc-sandbox"
}
def run_command(command, cwd=None):
@@ -167,8 +168,18 @@ async def main():
if not run_command(ai_cmd):
sys.exit(1)
print(f"\n--- ÉTAPE 5 : Sandbox (Projet: {PROJECTS['sandbox']}) ---")
sandbox_cmd = [
"docker", "compose",
"-p", PROJECTS["sandbox"],
"-f", f"{COMPOSE_DIR}/docker-compose-sandbox.yml",
"up", "-d", "--build"
]
if not run_command(sandbox_cmd):
sys.exit(1)
# 5. Application
print(f"\n--- ÉTAPE 5 : APPLICATION (Projet: {PROJECTS['app']}) ---")
print(f"\n--- ÉTAPE 6 : APPLICATION (Projet: {PROJECTS['app']}) ---")
app_cmd = [
"docker", "compose",
"-p", PROJECTS["app"],