-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.json
30 lines (30 loc) · 907 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
30
{
"name": "MOSP",
"description": "A platform for creating, editing and sharing JSON objects.",
"keywords": [
"MOSP",
"json",
"json-schema"
],
"website": "https://github.com/NC3-LU/MOSP",
"repository": "https://github.com/NC3-LU/MOSP",
"scripts": {
"postdeploy": "pybabel compile -d mosp/translations && flask db_init && flask create_admin --login admin --email [email protected] --password password && flask import_licenses_from_spdx"
},
"addons": [
"heroku-postgresql:hobby-dev"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
},
{
"url": "https://github.com/heroku/heroku-buildpack-python"
}
],
"env": {
"HEROKU": "1",
"ADMIN_EMAIL": "[email protected]",
"ADMIN_URL": "https://www.example.org"
}
}