-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 903 Bytes
/
package.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
{
"name": "scheduler-maestro",
"version": "0.6.0",
"description": "Daemon, scheduler api",
"main": "run.py",
"scripts": {
"beat": "python run.py",
"celery": "celery -A app.celery worker -E -Q scheduler --hostname=scheduler@%h --loglevel=info",
"save": "pip freeze -l > requirements.txt ",
"test": "python -m unittest discover",
"package-flask": "docker build -t scheduler-maestro .",
"package-celery": "docker build -t scheduler-maestro-celery -f DockerfileCelery ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/maestro-server/discovery-api.git"
},
"keywords": [
"flask",
"python",
"celery",
"maestro"
],
"author": "Felipe Signorini",
"license": "ISC",
"bugs": {
"url": "https://github.com/maestro-server/discovery-api/issues"
},
"homepage": "https://github.com/maestro-server/discovery-api#readme"
}