Skip to content

Commit

Permalink
Merge pull request #1608 from DSD-DBS/build-listen-to-all-hosts
Browse files Browse the repository at this point in the history
build: Listen to all hosts when running dev mode
  • Loading branch information
MoritzWeber0 authored Jun 5, 2024
2 parents bfa900d + 5413854 commit 67dbf8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ app:
source $(VENV)/Scripts/activate;
fi
export OAUTHLIB_INSECURE_TRANSPORT=1;
uvicorn --reload --reload-dir $$(pwd) --reload-include "*.py" --reload-include "*.yaml" --reload-include "*.yml" capellacollab.__main__:app
uvicorn --host 0.0.0.0 --reload --reload-dir $$(pwd) --reload-include "*.py" --reload-include "*.yaml" --reload-include "*.yml" capellacollab.__main__:app

coverage:
pytest \
Expand Down
2 changes: 1 addition & 1 deletion frontend/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
export NG_FORCE_TTY=false

dev:
ng serve --open
ng serve --host 0.0.0.0 --open

test:
if [ $(shell which chromium) ]; \
Expand Down

0 comments on commit 67dbf8e

Please sign in to comment.