-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
29 lines (29 loc) · 868 Bytes
/
app.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
{
"name": "Create Flask API",
"description": "Flask API",
"keywords": [
"flask",
"api",
"scaffolding",
"ignite"
],
"website": "https://github.com/sumukh/create-flask-api/",
"repository": "https://github.com/sumukh/create-flask-api/",
"logo": "https://github.com/Sumukh/Ignite/raw/master/appname/static/public/ignite/ignite-icon.png",
"success_url": "/api/info",
"scripts": {},
"env": {
"SECRET_TOKEN": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"FLASK_APP": {
"description": "Where the flask app lives.",
"value": "index.py"
},
"FLASK_ENV": {
"description": "What environment is this in",
"value": "prod"
}
}
}