Skip to content

Commit

Permalink
fix: Prevent Angular CLI prompts from interrupting app launch
Browse files Browse the repository at this point in the history
Angular CLI could prompt the user for input about autocomplete or analytics in the middle of the make process, causing a failure to properly launch the app. Adding an environmental variable to suppress TTY avoids this.
  • Loading branch information
romeonicholas committed Oct 23, 2023
1 parent a8a3081 commit 808776d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# SPDX-FileCopyrightText: Copyright DB Netz AG and the capella-collab-manager contributors
# SPDX-License-Identifier: Apache-2.0

export NG_FORCE_TTY=false

dev:
ng serve --open

Expand Down

0 comments on commit 808776d

Please sign in to comment.