Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
services:
- docker
script:
- make && make install && make test
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Ruby in AWS Lambda with PostgreSQL / Nokogiri

## Usage

### Build and test locally

```
make && make install && make test
```

### Deploy

Before deploying, you will need to create an IAM role for Lambda (it doesn't need any policies), and copy its ARN into the `--role` parameter.

```
make zip && make deploy && make invoke
```