https://github.com/nitor-infotech-oss/realworld-python-lambda
This application is based on AWS Lambda function,DynamoDB,API Gateway using serverless framework with python
https://github.com/nitor-infotech-oss/realworld-python-lambda
Last synced: 7 months ago
JSON representation
This application is based on AWS Lambda function,DynamoDB,API Gateway using serverless framework with python
- Host: GitHub
- URL: https://github.com/nitor-infotech-oss/realworld-python-lambda
- Owner: nitor-infotech-oss
- Created: 2019-07-16T13:00:27.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-13T18:26:36.000Z (almost 6 years ago)
- Last Synced: 2025-02-01T09:22:22.058Z (8 months ago)
- Language: Python
- Size: 87.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# realworld-python-lambda
This application is based on AWS Lambda function,DynamoDB,API Gateway using serverless framework with python# **Getting started**
Clone this repo:
```
git clone https://github.com/nitor-infotech-oss/realworld-python-lambda.git
```
# Serverless Framework# Setup
1 # Step 1. Install serverless globally
```
npm install -g serverless
```
2 # Step 2.Create a new Serverless Service/Project
```
sls create --template aws-python3 --path realworld-python-lambda
cd realworld-python-lambda
```
3 # Deploy, test and diagnose your servicea.Deploy the Service:
Use this when you have made changes to your Functions, Events or Resources in serverless.yml or you simply want to deploy all changes within your Service at the same time.
```
sls deploy -v
```
b. Deploy the Function:
Use this to quickly upload and overwrite your function code, allowing you to develop faster.
```
sls deploy function -f hello
```