Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wmaciejak/aws-serverless
Serverless example application with GraphQL and PostgreSQL.
https://github.com/wmaciejak/aws-serverless
Last synced: 11 days ago
JSON representation
Serverless example application with GraphQL and PostgreSQL.
- Host: GitHub
- URL: https://github.com/wmaciejak/aws-serverless
- Owner: wmaciejak
- Created: 2018-06-01T12:36:47.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-04T21:57:58.000Z (over 6 years ago)
- Last Synced: 2024-11-07T13:48:40.722Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Serverless example application
## Requirements
- node 8.x
- postgresql
- configured AWS account with access to lambda service## Setup
```bash
# Setup app
npm install# copy ENV defintion file and make own configuration
cp .env.example .env
```## Testing
```bash
# external DB
lambda-local -f handler -e test/posts_from_pg.json# mocked data
lambda-local -f handler -e test/posts.json
```