LegalLens-API / .replit
b24122
Set up core project files for legal case analysis API backend
9844436
raw
history blame contribute delete
522 Bytes
modules = ["python-3.11"]
[nix]
channel = "stable-25_05"
packages = ["libxcrypt"]
[workflows]
runButton = "Project"
[[workflows.workflow]]
name = "Project"
mode = "parallel"
author = "agent"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "FastAPI Server"
[[workflows.workflow]]
name = "FastAPI Server"
author = "agent"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "python -m uvicorn main:app --host 0.0.0.0 --port 5000 --reload"
waitForPort = 5000
[[ports]]
localPort = 5000
externalPort = 80