Alternative Serverless implementation of the Bitwarden server API written in Kotlin and compatible with upstream Bitwarden clients
This project is not associated with the Bitwarden project nor 8bit Solutions LLC.
HTTP API: AWS API Gateway --> AWS Lambda
DATABASE: DynamoDB
sam build -t template-dynamodb.yaml --config-file samconfig-dynamodb.toml
sam deploy -t template-dynamodb.yaml --config-file samconfig-dynamodb.toml
The project is only compatible with AWS lambda nowadays
- aws lambda
JetBrains kotless is a kotlin-based serverless framework.
From the perspective of mine, it is more like an infrastructure deployment tool/framework rather than a serverless
lib. I would like to choose one lib as sidecar of the project. So I extract part of code which is related with ktor
serverless from JetBrains kotless into folder src/main/kotlin/com/ivyxjc/kotless
.
There is another factor to be considered that kotless does not support AWS ApiGateway V2 HttpApi.
- The code in folder
src/main/kotlin/com/ivyxjc/kotless
is licensed under the Apache 2.0 license since most of the code is from the JetBrains kotless which is licensed under the Apache 2.0 license. - Other part of the code is licensed under the GPL-3.0 license since that I learn some system design and api implementations from another project vaultwarden project which is licensed under the GPL-3.0.