Skip to content

Commit

Permalink
Updated backend Readme.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
guptakshitij2308 committed Jun 17, 2024
1 parent 1c70728 commit dcbda78
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions platform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,3 +123,9 @@ These additional references should also help you:
* [One time setup] Use this guide to install and run dynamodb in local [DynamoDBLocal.DownloadingAndRunning](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.DownloadingAndRunning.html)
* [One time setup] Run `local_db_init.sh` to create all tables and populate City and Sport tables
* To hit local dynamoDB set `spring.profiles.active=dev` in command to start application.


### Server errors and their resolution

* tomcat runs on 8443 but to avoid using port number in https url we need to forward 443 to 8443
* Fix : sudo iptables -t nat -A PREROUTING -p tcp --dport 443 -j REDIRECT --to-port 8443

0 comments on commit dcbda78

Please sign in to comment.