-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.js
More file actions
40 lines (40 loc) · 1.48 KB
/
Copy pathinstall.js
File metadata and controls
40 lines (40 loc) · 1.48 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
module.exports = {
run: [
// Edit this step to customize the git repository to use
{
method: "shell.run",
params: {
message: [
"git clone https://github.com/nari-labs/dia/ app",
]
}
},
// Delete this step if your project does not use torch
{
method: "script.start",
params: {
uri: "torch.js",
params: {
venv: "env", // Edit this to customize the venv folder path
path: "app", // Edit this to customize the path to start the shell from
// xformers: true // uncomment this line if your project requires xformers
// triton: true // uncomment this line if your project requires triton
// sageattention: true // uncomment this line if your project requires sageattention
}
}
},
// Edit this step with your custom install commands
{
method: "shell.run",
params: {
venv: "env", // Edit this to customize the venv folder path
path: "app", // Edit this to customize the path to start the shell from
// Combine all installations into a single command line
message: [
// Installs gradio, devicetorch, and then all packages from the original requirements.txt
"uv pip install gradio devicetorch descript-audio-codec>=1.0.0 huggingface-hub>=0.30.2 numpy>=2.2.4 pydantic>=2.11.3 soundfile>=0.13.1"
]
}
},
]
}