CoolFace
Apppublic

eswar0474/FL_IDS

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
.replit87 linesDownload Raw Back to root
1modules = ["nodejs-20", "web", "postgresql-16"]2run = "npm run dev"3hidden = [".config", ".git", "generated-icon.png", "node_modules", "dist"]4 5[nix]6channel = "stable-24_05"7 8[deployment]9deploymentTarget = "autoscale"10build = ["npm", "run", "build"]11run = ["npm", "run", "start"]12 13[[ports]]14localPort = 500015externalPort = 8016 17[env]18PORT = "5000"19 20[workflows]21runButton = "AgisFL Production Ready"22 23[[workflows.workflow]]24name = "Project"25mode = "parallel"26author = "agent"27 28[[workflows.workflow.tasks]]29task = "workflow.run"30args = "Start application"31 32[[workflows.workflow]]33name = "Start application"34author = "agent"35 36[[workflows.workflow.tasks]]37task = "shell.exec"38args = "npm run dev"39waitForPort = 500040 41[[workflows.workflow]]42name = "Start AgisFL Production"43author = 4516851244mode = "sequential"45 46[[workflows.workflow.tasks]]47task = "shell.exec"48args = "npm run build && npm start"49 50[[workflows.workflow]]51name = "AgisFL Development"52author = 4516851253mode = "sequential"54 55[[workflows.workflow.tasks]]56task = "shell.exec"57args = "npm install"58 59[[workflows.workflow.tasks]]60task = "shell.exec"61args = "npm run build"62 63[[workflows.workflow.tasks]]64task = "shell.exec"65args = "npm run dev"66 67[[workflows.workflow]]68name = "AgisFL Production Ready"69author = 4516851270mode = "sequential"71 72[[workflows.workflow.tasks]]73task = "shell.exec"74args = "npm install"75 76[[workflows.workflow.tasks]]77task = "shell.exec"78args = "npm audit fix"79 80[[workflows.workflow.tasks]]81task = "shell.exec"82args = "npm run build"83 84[[workflows.workflow.tasks]]85task = "shell.exec"86args = "npm start"87