-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
28 lines (28 loc) · 831 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
{
"name": "Covid-Status-Verifier",
"description": "A web application that verifies that an individual is vaccinated or not using face recognition and/or Qrcodes.",
"image": "heroku/python",
"repository": "https://github.com/tmnyoni/Covid-Status-Verifier",
"keywords": [
"python",
"django",
"face-recognition",
"qrcodes",
"djangorestframework",
"djangorestframework-simpleJWT"
],
"env": {
"SECRET_KEY": {
"description": "The secret key for the Django application.",
"generator": "secret"
}
},
"environments": {
"test":{
"scripts": {
"test-setup": "python manage.py collectstatic --noinput",
"test": "python manage.py test"
}
}
}
}