Skip to content

Commit

Permalink
Setup Heroku configurations on core apps module (#444)
Browse files Browse the repository at this point in the history
  • Loading branch information
kdaud authored Feb 21, 2022
1 parent 85f0f61 commit 46cb35a
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
19 changes: 19 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"addons": [],
"buildpacks": [
{
"url": "https://github.com/mars/create-react-app-buildpack.git"
}
],
"description": "QA Framework for OpenMRS",
"env": {},
"formation": {
"web": {
"quantity": 1
}
},
"name": "openmrs-contrib-qaframework",
"scripts": {
},
"stack": "heroku-20"
}
13 changes: 13 additions & 0 deletions static.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"root": "build/",
"routes": {
"/images/*": "/images/",
"/static/media/*": "/static/media/",
"/static/css/*": "/static/css/",
"/static/js/*": "/static/js/",
"/static/java/*": "/static/java/",
"/**": "index.html"
},
"clean_urls": true,
"https_only": true
}

0 comments on commit 46cb35a

Please sign in to comment.