https://github.com/bboure/appsync-todo
https://github.com/bboure/appsync-todo
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bboure/appsync-todo
- Owner: bboure
- Created: 2021-02-22T19:04:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-23T06:49:39.000Z (over 4 years ago)
- Last Synced: 2025-01-30T09:12:30.113Z (8 months ago)
- Size: 715 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting started
```bash
# install dependencies
npm i
# install dynamodb local (Optional, for local testing only)
sls dynamodb install
```# Deployment
Deployment is automated through the [serverless.com](https://serverless.com) Dashboard.
Ci/Ci configuaration
Every push to master deploys the dev stage.
ci/cd logs
Manual deployment can also be done with the following command
```bash
sls deploy -s dev #change the -s param to deploy another stage
```# Working offline
You can test your API locally thanks to the [bboure/serverless-appsync-simulator](https://github.com/bboure/serverless-appsync-simulator) plugin.
```bash
sls offline start
```