-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpm2-process.json.example
More file actions
78 lines (78 loc) · 1.44 KB
/
pm2-process.json.example
File metadata and controls
78 lines (78 loc) · 1.44 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "dfp-proxy",
"interpreter": "/usr/bin/env",
"script": "python",
"args": "-u -m src.api",
"min_uptime": 5000,
"max_restarts": 3,
"watch": false,
"ignore_watch": [
"**/.git/**",
"**/.github/**",
"**/.vscode/**",
"**/.vscode-server/**",
"**/.idea/**",
"**/.ipynb_checkpoints/**",
"**/.pytest_cache/**",
"**/.benchmarks/**",
"**/__pycache__/**",
"**/node_modules/**",
"**/env/**",
"**/venv/**",
"**/envs/**",
"**/dist/**",
"**/sdist/**",
"**/build/**",
"**/builds/**",
"**/site/**",
"**/sites/**",
"**/log/**",
"**/logs/**",
"**/backup/**",
"**/backups/**",
"**/tmp/**",
"**/docs/**",
"**/examples/**",
"**/scripts/**",
"**/templates/**",
"**/tests/**",
"**/data/**",
"**/dataset/**",
"**/datasets/**",
"**/result/**",
"**/results/**",
"**/output/**",
"**/outputs/**",
"**/*._*",
"**/*.DS_Store",
"**/*.egg-info/**",
"**/*.ipynb",
"**/*.pyc",
"**/*.log",
"**/*.bak",
"**/*.example",
"**/*.dockerignore",
"**/*.editorconfig",
"**/*.gitignore",
"**/*.markdownlint.json",
"**/*.pre-commit-config.yaml",
"**/*CHANGELOG.md",
"**/*compose.sh",
"**/*compose.yml",
"**/*compose.override.yml",
"**/*Dockerfile*",
"**/*environment.yml",
"**/*LICENSE.txt",
"**/*Makefile",
"**/*mkdocs.yml",
"**/*pytest.ini",
"**/*README.md",
"**/*Thumbs.db",
"**/*sample.py",
"**/*example.py",
"**/*test.py"
],
"watch_options": {
"followSymlinks": false
}
}