Skip to content

Commit

Permalink
Fixed port number on which app is exposed
Browse files Browse the repository at this point in the history
  • Loading branch information
Liqs-v2 authored Oct 22, 2023
1 parent efe1138 commit b3b17a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ To run the service locally, follow these steps:
- Clone this repository: `git clone https://github.com/tum-calendar-proxy/tum-calendar-proxy.git`
- Navigate to the project directory: `cd tum-calendar-proxy`
- Run the proxy server: `go run cmd/proxy/proxy.go`
- The service will be available at <http://localhost:8081>
- The service will be available at <http://localhost:4321>

To build a production image using Docker, follow these steps:

- Build the image: `docker build -t tumcalproxy .`
- Run the container: `docker run -p 8081:8081 tumcalproxy`
- The service will be available at <http://localhost:8081>
- Run the container: `docker run -p 4321:4321 tumcalproxy`
- The service will be available at <http://localhost:4321>

0 comments on commit b3b17a0

Please sign in to comment.