File size: 497 Bytes
dd0dbb2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  // These tasks will run in order when initializing your CodeSandbox project.
  "setupTasks": [
    {
      "name": "Installing Dependencies",
      "command": "pip install -r requirements.txt"
    }
  ],

  // These tasks can be run from CodeSandbox. Running one will open a log in the app.
  "tasks": {
    "run-api-service": {
      "name": "Run API Service",
      "command": "python -m apis.chat_api",
      "runAtStart": true,
      "preview": {
        "port": 22222
      }
    }
  }
}