-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.replit
More file actions
39 lines (30 loc) · 1020 Bytes
/
Copy path.replit
File metadata and controls
39 lines (30 loc) · 1020 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
modules = ["python-3.11", "web", "nodejs-20"]
[agent]
expertMode = true
[nix]
channel = "stable-25_05"
packages = ["cairo", "cargo", "catch2", "ffmpeg-full", "fmt", "freetype", "geckodriver", "ghostscript", "glibcLocales", "gmp", "gobject-introspection", "gtk3", "libcxx", "libiconv", "libjpeg_turbo", "libpng", "libxcrypt", "mpi", "muparserx", "nlohmann_json", "openssh", "openssl", "pkg-config", "qhull", "rustc", "spdlog", "tcl", "tk", "which", "xsimd"]
[[ports]]
localPort = 5000
externalPort = 80
[workflows]
runButton = "Project"
[[workflows.workflow]]
name = "Project"
mode = "parallel"
author = "agent"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "Bitcoin Scanner"
[[workflows.workflow]]
name = "Bitcoin Scanner"
author = "agent"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "python main.py"
waitForPort = 5000
[workflows.workflow.metadata]
outputType = "webview"
[deployment]
deploymentTarget = "autoscale"
run = ["gunicorn", "--bind=0.0.0.0:5000", "--reuse-port", "main:app"]