Home > Mobile >  Angular Project with Bazel needs sudo to start
Angular Project with Bazel needs sudo to start

Time:10-06

I use Bazel to run and build my Angular-project. Since I re-cloned the project (due to some npm/yarn issues), I can't start the project anymore without using sudo:

It worked like this earlier and I want it to work like so:

yarn start

But now I have to start it like this:

sudo yarn start

The yarn start executes the following command:

ibazel run //src/folder:devserver

Does anybody know where i have to set the permissions?

CodePudding user response:

I just re-cloned the repository.

  • Related