-
Notifications
You must be signed in to change notification settings - Fork 2
/
install.js
40 lines (40 loc) · 912 Bytes
/
install.js
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: [
{
method: "shell.run",
params: {
message: "git clone https://github.com/IAHispano/Applio applio",
},
},
{
method: "shell.run",
params: {
path: "applio",
message: [
"git reset --hard 5db5e53ad30cc69007e576d96f85fdd932c9fea8"
]
}
},
{
method: "script.start",
params: {
uri: "torch.js",
params: {
venv: "env",
path: "applio",
}
}
},
{
method: "shell.run",
params: {
venv: "env", // Edit this to customize the venv folder path
path: "applio", // Edit this to customize the path to start the shell from
message: [
"pip install --upgrade setuptools",
"pip install -r ../requirements.txt",
]
}
}
]
}