-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.11 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.11 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
{
"name": "discovery-maestro",
"version": "0.6.0",
"description": "Flask, discovery services",
"main": "run.py",
"scripts": {
"server": "FLASK_APP=run.py FLASK_DEBUG=1 flask run",
"powershell": "$env:FLASK_APP = 'run.py'; $env:FLASK_DEBUG = '1'; flask run",
"celery": "celery -A app.celery worker -E -Q discovery --hostname=discovery@%h --loglevel=info",
"save": "pip freeze -l > requirements.txt ",
"test": "python -m unittest discover",
"package-flask": "docker build -t discovery-maestro -t discovery-maestro .",
"package-celery": "docker build -f DockerfileCelery -t discovery-maestro-celery .",
"docs": "apidoc -i app/controller/ -o docs/"
},
"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",
"dependencies": {
"apidoc": "^0.17.6"
}
}