A list of all the region names and locations for Azure
You can recreate the list anytime using this command:
az account list-locations -o table| // 定义 | |
| export interface MyInputHandles { | |
| focus(): void; | |
| } | |
| const MyInput: RefForwardingComponent<MyInputHandles, MyInputProps> = ( | |
| props, | |
| ref | |
| ) => { | |
| const inputRef = useRef<HTMLInputElement>(null); |
| using System; | |
| using System.Diagnostics; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| namespace test | |
| { | |
| class Person | |
| { | |
| public int Number { get; set; } |
| # the IP(s) on which your node server is running. I chose port 3000. | |
| upstream app_geoforce { | |
| server 127.0.0.1:3000; | |
| } | |
| upstream app_pcodes{ | |
| server 127.0.0.1:3001; | |
| } |
| namespace FunctionApp1 | |
| { | |
| using Autofac; | |
| using Autofac.Core; | |
| using EnsureThat; | |
| using Microsoft.Azure.WebJobs; | |
| using Microsoft.Azure.WebJobs.Description; | |
| using Microsoft.Azure.WebJobs.Host; | |
| using Microsoft.Azure.WebJobs.Host.Config; |
| ssh-keygen -t rsa -b 4096 -f jwtRS256.key | |
| # Don't add passphrase | |
| openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub | |
| cat jwtRS256.key | |
| cat jwtRS256.key.pub |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| #add 'node_modules' to .gitignore file | |
| git rm -r --cached node_modules | |
| git commit -m 'Remove the now ignored directory node_modules' | |
| git push origin master |