-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
26 lines (26 loc) · 1.02 KB
/
config.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
{
"title": "Product Gang Intern",
"services": {
"devserver": {
"name": "Development Server",
"description": "The development server, running on port 8000",
"command": "/home/vagrant/env_project/bin/python",
"args": ["manage.py", "runserver", "0.0.0.0:8000", "--settings", "project.settings.local"],
"path": "/home/vagrant/project/"
},
"migrate": {
"name": "Migrate",
"description": "Runs the database migrations",
"command": "/home/vagrant/env_project/bin/python",
"args": ["manage.py", "migrate", "--settings", "project.settings.local"],
"path": "/home/vagrant/project/"
},
"tests": {
"name": "Tests",
"description": "Runs the unit tests",
"command": "/home/vagrant/env_project/bin/python",
"args": ["manage.py", "test", "--settings", "project.settings.test"],
"path": "/home/vagrant/project/"
}
}
}