Skip to content

Commit

Permalink
Merge pull request #6 from kryan1622/frontend
Browse files Browse the repository at this point in the history
Frontend
  • Loading branch information
kryan1622 authored Jul 19, 2019
2 parents 55045bf + c99d5ad commit 692b9d8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ services:
- target: 80
protocol: tcp
published: 80
container_name: nginx

server:
image: keepkarm/server:latest
Expand Down
Empty file added num_gen/num_gen1.PY
Empty file.
4 changes: 2 additions & 2 deletions server/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ spring.main.allow-bean-definition-overriding=true
server.port=8084

url.getAll=http://account:5002/account/all
url.textGen=http://text_gen:9017/text_gen
url.numGen=http://num_gen:9018/num_gen
url.textGen=http://text_gen:9017/text_gen/
url.numGen=http://num_gen:9018/num_gen/
url.prize=http://account:5002/account/createAccount
2 changes: 1 addition & 1 deletion static_website/public/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function createAccount() {
console.log(req.responseText);

}
req.open("POST", "http://51.144.95.241:5002/account/createAccount");
req.open("POST", "http://51.144.95.241:8084/addAccount");
req.send(JSON.stringify(account));
console.log(req.responseText);
}
Expand Down

0 comments on commit 692b9d8

Please sign in to comment.