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) <noreply@anthropic.com>
This commit is contained in:
sylvain p 2026-05-07 12:44:59 +02:00
parent 071a8aa3ac
commit 9ca38e9494
3 changed files with 0 additions and 80 deletions

View File

@ -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"

View File

@ -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 = "/"

View File

@ -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"