https://github.com/gsans/braziljs-find-keanu-angular
Using Amazon Rekognition with AWS Amplify to find *Keanu Reeves*
https://github.com/gsans/braziljs-find-keanu-angular
aws aws-amplify keanu-reeves rekognition
Last synced: 2 months ago
JSON representation
Using Amazon Rekognition with AWS Amplify to find *Keanu Reeves*
- Host: GitHub
- URL: https://github.com/gsans/braziljs-find-keanu-angular
- Owner: gsans
- Created: 2019-08-22T01:33:00.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-06T14:29:57.000Z (over 2 years ago)
- Last Synced: 2025-04-05T17:18:13.970Z (6 months ago)
- Topics: aws, aws-amplify, keanu-reeves, rekognition
- Language: TypeScript
- Homepage:
- Size: 3.82 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Find *KEANU REEVES* using AWS Amplify
This app shows how to use Amazon Rekognition with AWS Amplify. Main feature: finding Keanu.
## Deploy with the AWS Amplify Console
The AWS Amplify Console provides hosting for fullstack serverless web apps. [Learn more](https://console.amplify.aws). Deploy this app to your AWS account with a single click:
[](https://console.aws.amazon.com/amplify/home#/deploy?repo=https://github.com/gsans/braziljs-find-keanu-angular)
The Amplify Console will fork this repo in your GitHub account, and then build and deploy your backend and frontend in a single workflow. Your app will be available at `https://master.appid.amplifyapp.com`.
## Run locally with the Amplify CLI
1. Clone the repo that was just forked in your account
```
git clone git@github.com:/braziljs-find-keanu-angular.gitcd braziljs-find-keanu-angular && npm install
```2. Import the backend environment deployed by the Amplify Console to your repo (the `amplify/team-provider.json` file contains information on all backend environments in your AWS account). The GIF below shows how you to copy the `amplify env import` command from the Amplify Console.
3. Paste this command into your terminal at the root of your repo. You should see the `amplify/team-provider.json` updated with a backend named `amplify`.
```
amplify env import --name amplify --config "{}" --awsInfo "{}" --yesSuccessfully added environment from your project
```3. Initialize the Amplify CLI with the `amplify` environment.
```
amplify init
? Do you want to use an existing environment? Yes
? Choose the environment you would like to use: (Use arrow keys)
> amplify
```4. Run locally
```
npm start
```