An open API service indexing awesome lists of open source software.

https://github.com/smithclay/go-etherdome

experimental ethereum BaaS running on AWS
https://github.com/smithclay/go-etherdome

Last synced: 8 months ago
JSON representation

experimental ethereum BaaS running on AWS

Awesome Lists containing this project

README

          

## etherdome

![image](https://user-images.githubusercontent.com/27153/35133669-4843eacc-fc86-11e7-9520-850f02d55cd8.png | width=100)

`geth` running on AWS Lambda. WIP.

### deploying

```
$ sam package --template-file template.yaml --s3-bucket etherdome --output-template-file packaged.yaml
$ sam deploy --template-file ./packaged.yaml --stack-name etherdome-stack --capabilities CAPABILITY_IAM
```

### environment variables

* `LOG_DEBUG`: include debug output in logs

### localstack setup

When running with AWS SAM Local, mock AWS services are used with localstack:

```
$ localstack start --docker
$ aws --endpoint-url="http://127.0.0.1:4572" s3api create-bucket --bucket etherdome
$ aws --endpoint-url="http://127.0.0.1:4572" s3api list-buckets
````