-
Notifications
You must be signed in to change notification settings - Fork 3
Home
wojciech-dabrowski edited this page Aug 4, 2019
·
14 revisions
To use all examples in the repository you have to properly configure your environment.
You will need AWS CLI in your local machine to perform actions (e.g. create new resources, deploy your code) to your AWS account.
- Download and install AWS CLI from: https://aws.amazon.com/cli
- Generate
AWS Access Key ID
andAWS Secret Access Key
for your AWS user and configure AWS CLI by runningaws configure
command. More info at: https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html - Make sure if your CLI was correctly set up by running some simple command, for example listing all your S3 Buckets:
aws s3 ls
You will need .NET Core SDK to build backend application.
- Download and install the newest version of .NET Core SDK from: https://dotnet.microsoft.com/download
- Make sure if .NET Core SDK was installed correctly by running command:
dotnet --version
You will need AWS Lambda .NET tool to deploy your .NET Core binaries to the AWS.
- After installing .NET Core SDK, run command:
dotnet tool install -g Amazon.Lambda.Tools
- Make sure if AWS Lambda .NET tool was installed correctly by running command:
dotnet-lambda
You will need Node.js (precisely npm) to build frontend application.
- Download and install the newest LTS version of Node.js from: https://nodejs.org
- Make sure if Node.js was installed correctly by running command:
npm -v