CodeCraftLab / .replit
S-Dreamer's picture
Upload 14 files
5dd070e verified
raw
history blame contribute delete
950 Bytes
modules = ["python-3.11"]
[nix]
channel = "stable-24_05"
[deployment]
deploymentTarget = "autoscale"
run = ["sh", "-c", "streamlit run app.py --server.port 5000"]
[workflows]
runButton = "Streamlit App"
[[workflows.workflow]]
name = "Project"
mode = "parallel"
author = "agent"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "Streamlit Server"
[[workflows.workflow]]
name = "Streamlit Server"
author = "agent"
[workflows.workflow.metadata]
agentRequireRestartOnSave = false
[[workflows.workflow.tasks]]
task = "packager.installForAll"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "streamlit run app.py --server.port 5000"
waitForPort = 5000
[[workflows.workflow]]
name = "Streamlit App"
author = 25868489
mode = "sequential"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "streamlit run app.py --server.address 0.0.0.0 --server.port 5000 --server.headless true"
[[ports]]
localPort = 5000
externalPort = 80