Skip to content

Commit

Permalink
changed port to 5001 (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
JibrilExe authored Mar 26, 2024
1 parent bcee3bc commit e770091
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/test_auth_server/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ def get(self):
app = Flask(__name__)
app.register_blueprint(index_bp)

app.run(debug=True, host='0.0.0.0')
app.run(debug=True, host='0.0.0.0', port=5001)
2 changes: 1 addition & 1 deletion backend/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ services:
POSTGRES_PASSWORD: test_password
POSTGRES_DB: test_database
API_HOST: http://api_is_here
AUTHENTICATION_URL: http://auth-server:5000 # Use the service name defined in Docker Compose
AUTHENTICATION_URL: http://auth-server:5001 # Use the service name defined in Docker Compose
UPLOAD_URL: /data/assignments
volumes:
- .:/app
Expand Down

0 comments on commit e770091

Please sign in to comment.