generated from MiniHacks/geese
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.json
31 lines (31 loc) · 880 Bytes
/
scripts.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
{
"mongodb": {
"command": "docker-compose up mongodb",
"install": "echo \"\n\n\n\n\t\tPlease install Docker and docker-compose.\n\n\"",
"color": "green"
},
"nextjs": {
"path": "nextjs/",
"command": "yarn dev",
"install": "yarn",
"color": "aqua"
},
"express": {
"path": "express/",
"command": "yarn dev",
"install": "yarn",
"color": "purple"
},
"python": {
"path": "python/",
"command": "python3.9 -m venv venv/ && source venv/bin/activate && python3.9 -m python_backend",
"install": "python3.9 -m venv venv/ && source venv/bin/activate && pip3.9 install -r requirements.txt",
"color": "yellow"
},
"caddy": {
"path": "infra/",
"command": "caddy start --config Caddyfile.dev",
"install": "echo \"\n\n\n\n\t\tPlease install Caddy from https://caddyserver.com.\n\n\"",
"color": "red"
}
}