Skip to content

Fixed typos. #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ It fully supports asynchronous programming and can run with Uvicorn and Gunicorn
With FastAPI, we will be able to add data to our table in our DynamoDB database, edit the data, delete the data and read the data. You can proceed to the FastAPI I created from the [/FastAPI_DynamoDB](/FastAPI_DynamoDB/) directory, do not forget to edit the [.env](/FastAPI_DynamoDB/.env) file under this directory according to your own AWS keys. If you do not make this edit, you will not be able to access DynamoDB in your AWS account and run the API.

```env
AWS_ACCES_KEY_ID=***********
AWS_ACCESS_KEY_ID=***********
AWS_SECRET_ACCESS_KEY=***********
REGION_NAME=us-east-1
```

Now that you have edited the .env file, we can deploy the API over localhost from port 8000 with the python3 main.py command.

You can go to http://127.0.0.1:8000/docs and see the HTTP Mothods available in our API.
You can go to http://127.0.0.1:8000/docs and see the HTTP Methods available in our API.

<div align="center">

Expand Down