-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.replit
More file actions
41 lines (32 loc) · 805 Bytes
/
.replit
File metadata and controls
41 lines (32 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
run = "npm run dev"
modules = ["python-3.12", "nodejs-20", "web", "nix"]
[nix]
channel = "stable-25_05"
packages = ["bash", "file", "glibcLocales", "libxcrypt", "postgresql"]
[deployment]
run = ["sh", "-c", "npm run dev"]
deploymentTarget = "cloudrun"
[[ports]]
localPort = 5173
externalPort = 5173
[[ports]]
localPort = 8501
externalPort = 80
[workflows]
runButton = "Run Streamlit App"
[[workflows.workflow]]
name = "Run Streamlit App"
author = 40576215
mode = "sequential"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "streamlit run app.py --server.port=5000 --server.address=0.0.0.0"
[[workflows.workflow]]
name = "Serve Landing Page"
author = 40576215
mode = "sequential"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "python static_server.py"
[agent]
expertMode = true