32 lines
594 B
TOML
32 lines
594 B
TOML
|
|
kind = "web"
|
||
|
|
previewPath = "/"
|
||
|
|
title = "EHSAN Closed Donation Loop"
|
||
|
|
version = "1.0.0"
|
||
|
|
id = "artifacts/ehsan-poc"
|
||
|
|
router = "path"
|
||
|
|
|
||
|
|
[[integratedSkills]]
|
||
|
|
name = "react-vite"
|
||
|
|
version = "1.0.0"
|
||
|
|
|
||
|
|
[[services]]
|
||
|
|
name = "web"
|
||
|
|
paths = [ "/" ]
|
||
|
|
localPort = 18312
|
||
|
|
|
||
|
|
[services.development]
|
||
|
|
run = "pnpm --filter @workspace/ehsan-poc run dev"
|
||
|
|
|
||
|
|
[services.production]
|
||
|
|
build = [ "pnpm", "--filter", "@workspace/ehsan-poc", "run", "build" ]
|
||
|
|
publicDir = "artifacts/ehsan-poc/dist/public"
|
||
|
|
serve = "static"
|
||
|
|
|
||
|
|
[[services.production.rewrites]]
|
||
|
|
from = "/*"
|
||
|
|
to = "/index.html"
|
||
|
|
|
||
|
|
[services.env]
|
||
|
|
PORT = "18312"
|
||
|
|
BASE_PATH = "/"
|