-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.replit
More file actions
76 lines (58 loc) · 1.57 KB
/
.replit
File metadata and controls
76 lines (58 loc) · 1.57 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
modules = ["nodejs-20", "web", "python-3.11", "postgresql-16"]
[agent]
expertMode = true
integrations = ["python_database:1.0.0"]
[nix]
channel = "stable-25_05"
packages = ["cargo", "freetype", "glibcLocales", "gumbo", "harfbuzz", "jbig2dec", "libiconv", "libjpeg_turbo", "libxcrypt", "mupdf", "openjpeg", "rustc", "swig", "xcbuild"]
[workflows]
runButton = "Project"
[[workflows.workflow]]
name = "Project"
mode = "parallel"
author = "agent"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "Frontend"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "Backend"
[[workflows.workflow]]
name = "Frontend"
author = "agent"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "cd client && npm run dev"
waitForPort = 5000
[workflows.workflow.metadata]
outputType = "webview"
[[workflows.workflow]]
name = "Backend"
author = "agent"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "uvicorn server:app --host 127.0.0.1 --port 8000 --reload"
waitForPort = 8000
[workflows.workflow.metadata]
outputType = "console"
[[ports]]
localPort = 5000
externalPort = 80
[[ports]]
localPort = 8000
externalPort = 8000
exposeLocalhost = true
[[ports]]
localPort = 37277
externalPort = 3000
[[ports]]
localPort = 39061
externalPort = 3001
[deployment]
deploymentTarget = "autoscale"
run = ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "5000"]
build = ["bash", "-c", "cd client && npm install && npm run build"]
[userenv]
[userenv.shared]
JWT_SECRET_KEY = "ynSBalpa9djjooEfhGks99rK55Gv8unN1ZTzN2nWiaE"
JWT_REFRESH_SECRET_KEY = "S1zSetmtzCarArvPqraYoeY9_IulL0PRBJ3zOBACDcI"