Skip to content

Commit dfc7586

Browse files
committed
README for the api
1 parent 54d987a commit dfc7586

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

api-gateway/README.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# API Gateway
2+
3+
Creating an API Gateway with its various endpoints, methods, and access policies by hand
4+
is tedious and labor-intensive. Developers are helped significantly by using tools such as
5+
SAM (Sserverless Application Model), AWS Cloud Development Kit (CDK), Hashicorp Terraform,
6+
or Chalice.
7+
8+
Chalice is a python-based package that supports the creation of API Gateway endpoints, resources,
9+
methods, and access policies, as well as the Lambda functions behind them.
10+
11+
The demo in this directory offers a simple example of a Chalice-derived API. Once you have installed
12+
Chalice and other dependencies, this command will run the API locally:
13+
14+
```
15+
chalice local
16+
```
17+
18+
To deploy a working API:
19+
20+
```
21+
chalice deploy
22+
```

0 commit comments

Comments
 (0)