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

https://github.com/scylladb/serverless-examples

Code examples for ScyllaDB Cloud Serverless platform.
https://github.com/scylladb/serverless-examples

Last synced: 30 days ago
JSON representation

Code examples for ScyllaDB Cloud Serverless platform.

Awesome Lists containing this project

README

        

# serverless-examples
Code examples for ScyllaDB Cloud Serverless platform.

### gohelloserverless

Once a connection bundle file has been saved on a local disk, run the following:

```bash
cd gohelloserverless
go run main.go -bundle connection-bundle-cluster-name.yaml
```

### jhelloserverless

We are using maven assembly plugin to build a jar with all dependencies needed to run.
Remember to provide the path to a valid connection bundle:

```bash
cd jhelloserverless
mvn clean compile assembly:single
java -cp target/jhelloserverless-1.0-SNAPSHOT-jar-with-dependencies.jar com.scylladb.JHelloServerless --bundle /path/to/bundle
```