These three entries in a .env file
1 2 3 | cds.requires.ECEmploymentInformation.[development].credentials.authentication=BasicAuthentication cds.requires.ECEmploymentInformation.[development].credentials.username=myUsername cds.requires.ECEmploymentInformation.[development].credentials.password=myPassword |
are equal to line 12, 13, and 14 in this package.json snippet:
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 | { "cds" : { "ECEmploymentInformation" : { "kind" : "odata-v2" , "model" : "srv/external/ECEmploymentInformation" , "credentials" : { "[production]" : { "destination" : "sfsf" }, "[development]" : { "authentication" : "BasicAuthentication" , "username" : "myUsername" , "password" : "myPassword" , } } } } } |