From 9ca38e94949f9fd0c87f091a87dc3cc09da33df7 Mon Sep 17 00:00:00 2001 From: sylvain p Date: Thu, 7 May 2026 12:44:59 +0200 Subject: [PATCH] Drop leftover .replit-artifact manifests Removes the three Replit deployment manifests under artifacts/*/.replit-artifact/ that were missed by the earlier cleanup (hidden dirs). docker-compose.yml covers the same role outside Replit, so these files are dead weight. Co-Authored-By: Claude Opus 4.7 (1M context) --- .../api-server/.replit-artifact/artifact.toml | 32 ------------------- .../cra-app/.replit-artifact/artifact.toml | 31 ------------------ .../.replit-artifact/artifact.toml | 17 ---------- 3 files changed, 80 deletions(-) delete mode 100644 artifacts/api-server/.replit-artifact/artifact.toml delete mode 100644 artifacts/cra-app/.replit-artifact/artifact.toml delete mode 100644 artifacts/mockup-sandbox/.replit-artifact/artifact.toml diff --git a/artifacts/api-server/.replit-artifact/artifact.toml b/artifacts/api-server/.replit-artifact/artifact.toml deleted file mode 100644 index 814b9ad..0000000 --- a/artifacts/api-server/.replit-artifact/artifact.toml +++ /dev/null @@ -1,32 +0,0 @@ -kind = "api" -previewPath = "/api" # TODO - should be excluded from preview in the first place -title = "API Server" -version = "1.0.0" -id = "3B4_FFSkEVBkAeYMFRJ2e" - -[[services]] -localPort = 8080 -name = "API Server" -paths = ["/api"] - -[services.development] -run = "pnpm --filter @workspace/api-server run dev" - -[services.production] - -[services.production.build] -args = ["pnpm", "--filter", "@workspace/api-server", "run", "build"] - -[services.production.build.env] -NODE_ENV = "production" - -[services.production.run] -# we don't run through pnpm to make startup faster in production -args = ["node", "--enable-source-maps", "artifacts/api-server/dist/index.mjs"] - -[services.production.run.env] -PORT = "8080" -NODE_ENV = "production" - -[services.production.health.startup] -path = "/api/healthz" diff --git a/artifacts/cra-app/.replit-artifact/artifact.toml b/artifacts/cra-app/.replit-artifact/artifact.toml deleted file mode 100644 index 96d60bd..0000000 --- a/artifacts/cra-app/.replit-artifact/artifact.toml +++ /dev/null @@ -1,31 +0,0 @@ -kind = "web" -previewPath = "/" -title = "CRA - Compte Rendu d'Activité" -version = "1.0.0" -id = "artifacts/cra-app" -router = "path" - -[[integratedSkills]] -name = "react-vite" -version = "1.0.0" - -[[services]] -name = "web" -paths = [ "/" ] -localPort = 24212 - -[services.development] -run = "pnpm --filter @workspace/cra-app run dev" - -[services.production] -build = [ "pnpm", "--filter", "@workspace/cra-app", "run", "build" ] -publicDir = "artifacts/cra-app/dist/public" -serve = "static" - -[[services.production.rewrites]] -from = "/*" -to = "/index.html" - -[services.env] -PORT = "24212" -BASE_PATH = "/" diff --git a/artifacts/mockup-sandbox/.replit-artifact/artifact.toml b/artifacts/mockup-sandbox/.replit-artifact/artifact.toml deleted file mode 100644 index 8f94c25..0000000 --- a/artifacts/mockup-sandbox/.replit-artifact/artifact.toml +++ /dev/null @@ -1,17 +0,0 @@ -kind = "design" -previewPath = "/__mockup" -title = "Canvas" -version = "1.0.0" -id = "XegfDyZt7HqfW2Bb8Ghoy" - -[[services]] -localPort = 8081 -name = "Component Preview Server" -paths = ["/__mockup"] - -[services.env] -PORT = "8081" -BASE_PATH = "/__mockup" - -[services.development] -run = "pnpm --filter @workspace/mockup-sandbox run dev"