I hereby claim:
- I am jeffwilcox on github.
- I am jeffwilcox (https://keybase.io/jeffwilcox) on keybase.
- I have a public key ASBuEKl7kirZR3CekzozA9tkXJY4hr4oL_qrANuKEU5iMAo
To claim this, I am signing this object:
| // | |
| // Copyright (c) Microsoft. | |
| // Licensed under the MIT license. See LICENSE file in the project root for full license information. | |
| // | |
| import throat from 'throat'; | |
| import app from '../../../app'; | |
| import { IProviders } from '../../../interfaces'; | |
| import { ErrorHelper } from '../../../transitional'; |
| // simple JavaScript (Node.js CLI) generating of a key and token | |
| const crypto = require('crypto'); | |
| const myKey = crypto.randomBytes(32).toString('base64'); | |
| console.log('This is your key. Store is very securely, i.e. KeyVault:'); | |
| console.log(myKey); | |
| console.log(); | |
| const sha1 = crypto.createHash('sha1'); | |
| sha1.update(myKey); |
| [ | |
| { | |
| "submitter": "jwilcox", | |
| "reviewers": ["tim", "nikhil"], | |
| "data": { | |
| "componentName": "react", | |
| "componentVersion": "15.6.1" | |
| } | |
| }, | |
| { |
| @if "%SCM_TRACE_LEVEL%" NEQ "4" @echo off | |
| :: ---------------------- | |
| :: KUDU Deployment Script | |
| :: Version: 1.0.7 | |
| :: ---------------------- | |
| :: Prerequisites | |
| :: ------------- |
I hereby claim:
To claim this, I am signing this object:
| // | |
| // Copyright (c) Microsoft Corporation and contributors. All rights reserved. | |
| // | |
| // Licensed under the Apache License, Version 2.0 (the "License"); | |
| // you may not use this file except in compliance with the License. | |
| // You may obtain a copy of the License at | |
| // http://www.apache.org/licenses/LICENSE-2.0 | |
| // | |
| // Unless required by applicable law or agreed to in writing, software | |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // Copyright (c) Microsoft Corporation and contributors. All rights reserved. | |
| // Licensed under the MIT license. See LICENSE file in the project root for details. |
| // | |
| // Copyright (c) Microsoft Corporation and contributors. All rights reserved. | |
| // Licensed under the MIT license. See LICENSE file in the project root for details. | |
| // |
| #!/bin/bash | |
| # | |
| # Copyright (c) Microsoft. All rights reserved. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software |
| // Simple wrapper over APIs for uploading and downloading blobs from Windows Azure Storage | |
| // by Jeff Wilcox. Apache 2 license, have fun with it. | |
| var azure = require('azure') | |
| , fs = require('fs'); | |
| if (process.argv.length < 3) { | |
| console.log('Please call with the proper arguments.'); | |
| console.log('node updown.js ACCOUNT KEY CONTAINER up FILENAME'); | |
| console.log('node updown.js ACCOUNT KEY CONTAINER down FILENAME'); |