This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<AppDomains> | |
<AppDomain>https://login.windows.net</AppDomain> | |
<AppDomain>https://login.microsoftonline.net</AppDomain> | |
<AppDomain>https://login.microsoftonline.com</AppDomain> | |
</AppDomains> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your settings in this file to overwrite default and user settings. | |
{ | |
"json.schemas": [ | |
{ | |
"fileMatch": [ | |
"/config/config.json" | |
], | |
"url": "./node_modules/@microsoft/sp-build-web/lib/schemas/config.schema.json" | |
}, | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const gulp = require('gulp'); | |
const build = require('@microsoft/sp-build-web'); | |
build.task('serve-info', { | |
execute: (config) => { | |
return new Promise((resolve, reject) => { | |
var serveTask = config.uniqueTasks.find((task) => { | |
return task.name === 'serve'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -o errexit | |
set -o pipefail | |
set -o nounset | |
#set -o xtrace | |
version=$1 | |
cmd_base='yo @microsoft/sharepoint --solutionName spfx --component-name HelloWorld --component-description HelloWorld --skip-install' | |
cmd_v1_1="$cmd_base --no-skip-feature-deployment" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material:3.1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run -it --rm -v $PWD:/usr/src circleci/node:8.11.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
?loadSPFX=true&debugManifestsFile=https://localhost:4321/temp/manifests.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openssl genrsa -out localhost.pfx 2048 | |
openssl req -new -key localhost.pfx -out localhost.csr | |
openssl x509 -req -in localhost.csr -signkey localhost.pfx -out localhost.pem |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in {1..10000}; | |
do | |
label="$i" | |
if (( $i < 10 )); then | |
label="0$label" | |
fi | |
if (( $i < 100 )); then | |
label="0$label" | |
fi | |
if (( $i < 1000 )); then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in {1..10000}; | |
do | |
label="$i" | |
if (( $i < 10 )); then | |
label="0$label" | |
fi | |
if (( $i < 100 )); then | |
label="0$label" | |
fi | |
if (( $i < 1000 )); then |
OlderNewer