Skip to content
Closed
Prev Previous commit
Next Next commit
fix: TT-610 modificar archivo create_keys
  • Loading branch information
wilc0519 committed Apr 7, 2022
commit f996c4be5f2a19f16f66d35bf55a8ff71a244b38
12 changes: 6 additions & 6 deletions scripts/create-keys.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
> ./src/environments/keys.ts
echo 'export const AUTHORITY = '$AUTHORITY'' >> ./src/environments/keys.ts
echo 'export const CLIENT_ID = '$CLIENT_ID'' >> ./src/environments/keys.ts
echo 'export const SCOPES = '$SCOPES'' >> ./src/environments/keys.ts
echo 'export const STACK_EXCHANGE_ID = '$STACK_EXCHANGE_ID'' >> ./src/environments/keys.ts
echo 'export const STACK_EXCHANGE_ACCESS_TOKEN = '$STACK_EXCHANGE_ACCESS_TOKEN'' >> ./src/environments/keys.ts
echo 'export const AZURE_APP_CONFIGURATION_CONNECTION_STRING = '$AZURE_APP_CONFIGURATION_CONNECTION_STRING'' >> ./src/environments/keys.ts
echo "export const AUTHORITY = '${AUTHORITY}'" >> ./src/environments/keys.ts
echo "export const CLIENT_ID = '${CLIENT_ID}'" >> ./src/environments/keys.ts
echo "export const SCOPES = ['${SCOPES}']" >> ./src/environments/keys.ts
echo "export const STACK_EXCHANGE_ID = '${STACK_EXCHANGE_ID}'" >> ./src/environments/keys.ts
echo "export const STACK_EXCHANGE_ACCESS_TOKEN = '${STACK_EXCHANGE_ACCESS_TOKEN}'" >> ./src/environments/keys.ts
echo "export const AZURE_APP_CONFIGURATION_CONNECTION_STRING = '${AZURE_APP_CONFIGURATION_CONNECTION_STRING}'" >> ./src/environments/keys.ts
cat ./src/environments/keys.ts