0

I've got an existing project running that I have added kendo ui to via bower. We have a licensed copy so I am using the professional package.

Our TeamCity server is running Windows with many build agents, how can I pass the credentials to bower to authenticate with the kendo ui repo ?

I would prefer not to run a command on each build agent machine, and don't mind if I have to store the credentials in plain text.

ciantrius
  • 683
  • 1
  • 6
  • 21

1 Answers1

0

Using a .netrc file should work. Make sure it is stored in the right directory for Windows. Usually it should be the home directory of the user that your TeamCity server runs as.

Community
  • 1
  • 1
Atanas Korchev
  • 30,562
  • 8
  • 59
  • 93
  • Thanks for the links. The problem I had was the file being called .netrc instead of _netrc and not it being in the root of the project rather than the current users folder. – ciantrius Jun 05 '15 at 12:35