Replit-Commit-Author: Agent Replit-Commit-Session-Id: 6c8ae573-cc16-4c2c-a8f2-14d35b5cf68f Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 116abe33-6748-4eaf-8a05-e17accbbbb35 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8fb72399-555c-4fd5-bb7e-eef11ff2f027/6c8ae573-cc16-4c2c-a8f2-14d35b5cf68f/yJZy0Cc Replit-Helium-Checkpoint-Created: true
39 lines
702 B
Text
39 lines
702 B
Text
modules = ["nodejs-20", "web", "postgresql-16"]
|
|
run = "npm run dev"
|
|
hidden = [".config", ".git", "generated-icon.png", "node_modules", "dist"]
|
|
|
|
[nix]
|
|
channel = "stable-24_05"
|
|
|
|
[deployment]
|
|
deploymentTarget = "autoscale"
|
|
build = ["npm", "run", "build"]
|
|
run = ["node", "./dist/index.cjs"]
|
|
|
|
[[ports]]
|
|
localPort = 5000
|
|
externalPort = 80
|
|
|
|
[env]
|
|
PORT = "5000"
|
|
|
|
[workflows]
|
|
runButton = "Project"
|
|
|
|
[[workflows.workflow]]
|
|
name = "Project"
|
|
mode = "parallel"
|
|
author = "agent"
|
|
|
|
[[workflows.workflow.tasks]]
|
|
task = "workflow.run"
|
|
args = "Start application"
|
|
|
|
[[workflows.workflow]]
|
|
name = "Start application"
|
|
author = "agent"
|
|
|
|
[[workflows.workflow.tasks]]
|
|
task = "shell.exec"
|
|
args = "npm run dev"
|
|
waitForPort = 5000
|