Etape 3 + refonte visuelle + corrections etape 2
This commit is contained in:
@@ -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"],
|
||||
|
||||
Reference in New Issue
Block a user