Skip to content

Commit

Permalink
set URLs for inter-microservice requests in staging and production
Browse files Browse the repository at this point in the history
  • Loading branch information
hotzevzl committed Apr 1, 2022
1 parent 60287d6 commit 3bd926c
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
12 changes: 12 additions & 0 deletions api/apps/api/config/production.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"api": {
"url": "http://api:30001"
},
"geoprocessing": {
"url": "http://geoprocessing:30002"
},
"webshot": {
"url": "http://webshot:30003"
}
}

12 changes: 12 additions & 0 deletions api/apps/api/config/staging.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"api": {
"url": "http://api:30001"
},
"geoprocessing": {
"url": "http://geoprocessing:30002"
},
"webshot": {
"url": "http://webshot:30003"
}
}

5 changes: 5 additions & 0 deletions api/apps/geoprocessing/config/production.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"api": {
"url": "http://api:30001"
}
}
5 changes: 5 additions & 0 deletions api/apps/geoprocessing/config/staging.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"api": {
"url": "http://api:30001"
}
}

0 comments on commit 3bd926c

Please sign in to comment.