-
Notifications
You must be signed in to change notification settings - Fork 0
/
container.cfg
40 lines (35 loc) · 1.02 KB
/
container.cfg
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
{
"run": [
{
// Run configuration name
"name": "default",
"default": true,
// Current working dir
"cwd": "~/workspace",
// Run commands list
"commands": [
// Example:
// "pip install -r requirements.txt",
"npm start"
// Delete next line and uncomment or change lines above
//"echo 'Run configuration not defined! Please open Container config and define your run configuration."
],
// Environment variables
"environment": {
// You can access these variables in your code with the os.environ.get call
"VAR_NAME": "value", // os.environ.get('VAR_NAME')
"FOO": "bar" // os.environ.get('FOO')
},
// Open preview url in a new tab after setting environment variables and executing all commands
"preview": {
"url": "https://{{DOMAIN}}/"
}
}
],
"find_in_files": {
"ignore": [
// File types to ignore in search
".git", ".svn", "*.min.js"
]
}
}