-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.02 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.02 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
{
"name": "analytics-maestro",
"version": "0.6.0",
"description": "Maestro - Draw archectures and create maps",
"main": "run.py",
"scripts": {
"server": "FLASK_APP=run.py FLASK_DEBUG=1 flask run --port=5020",
"celery": "celery -A app.celery worker -Ofair --hostname=analytics@%h -l=info",
"save": "pip freeze -l > requirements.txt",
"test": "python -m unittest discover",
"package-flask": "docker build -t analytics-maestro .",
"package-celery": "docker build -f DockerfileCelery -t analytics-maestro-celery .",
"docs": "apidoc -i app/controller/ -o docs/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maestro-server/analytics-maestro.git"
},
"keywords": [
"flask",
"python",
"maestro"
],
"author": "Felipe Signorini",
"license": "MIT",
"bugs": {
"url": "https://github.com/maestro-server/analytics-maestro/issues"
},
"homepage": "https://github.com/maestro-server/analytics-maestro#readme",
"dependencies": {
"apidoc": "^0.17.6"
}
}