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: 5 months ago
JSON representation

Serverless example application with GraphQL and PostgreSQL.

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
```