To using GO in Azure Function, we will use Custom Handler . These are steps : Add Azure Function 2. In VS Code , Create New Project 3. Setting Custom Handler Select HTTP Trigger . After done, folder should be like this 4. Create file handler.go in root folder package main import ( "io/ioutil" "log" … Continue reading Azure Function with GO
Category: Uncategorized
React Native with AWSMobile (Auth SignUp)
I am going to show how to use the AWS Mobile CLI to configure a new React Native project with AWS Amplify + Cognito & enable user sign up and sign in. This also goes over how to enable two factor authentication. Step 1: Create React Native project react-native init sample cd sample mkdir src … Continue reading React Native with AWSMobile (Auth SignUp)