forked from Baljeet-Singh-Original/Bus-Booking-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.json
41 lines (40 loc) · 896 Bytes
/
tasks.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
{
// These tasks will run in order when initializing your CodeSandbox project.
"setupTasks": [
{
"name": "Install Dependencies",
"command": "npm install"
}
],
// These tasks can be run from CodeSandbox. Running one will open a log in the app.
"tasks": {
"start": {
"name": "start",
"command": "npm run start",
"runAtStart": false
},
"server": {
"name": "server",
"command": "npm run server",
"runAtStart": false
},
"client": {
"name": "client",
"command": "npm run client",
"runAtStart": false
},
"dev": {
"name": "dev",
"command": "npm run dev",
"runAtStart": true,
"preview": {
"port": 8000
}
},
"heroku-postbuild": {
"name": "heroku-postbuild",
"command": "npm run heroku-postbuild",
"runAtStart": false
}
}
}