-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdirectories.json
41 lines (41 loc) · 964 Bytes
/
directories.json
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
{
"projects": {
"directory": "~/projects",
"options": {
"node": {
"message": "Node project",
"directory": "~/projects/node",
"command": {
"1": "nvm use",
"2": "yarn start"
}
},
"java": {
"message": "Java project",
"directory": "~/projects/java",
"command": "mvn exec:java -Dexec.mainClass=\"com.example.Main\""
},
"python": {
"message": "Python project",
"directory": "~/projects/python",
"options": {
"run": {
"command": "python index.py"
},
"install": {
"directory": "~/projects/python/src",
"command": "pip install -r requirements.txt"
}
}
},
"new": {
"message": "Creating new project",
"command": {
"1": "mkdir new",
"2": "cd new",
"3": "git init"
}
}
}
}
}