Skip to content

innFactory/bootstrap-akka-http.g8

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Akka Http Bootstrap

travis-ci.org codecov.io shields.io jonato.de

Info

A Giter8 template for a akka http service with swagger, slick and flyway database migration. You can use it to create your own REST Services on top of the lightbend stack.

Requirements

Implemented Features

  • Integration of swagger-ui localhost:8080/v1/swagger/index.html
  • Autogenerated swagger doc from routes as yaml / json localhost:8080/v1/api-docs/swagger.yaml or localhost:8080/v1/api-docs/swagger.json
  • CRUD Repositorys via slick-repo
  • CORS Support via akka-http-cors
  • Implemented Authentication with AWS Cognito (JWK) and JWT Token via nimbusds (in Java)
  • Test coverage with ScalaTest and scoverage code coverage report
  • Ready for Docker deployment and CloudFormation deployment
  • Config file with optional runtime parameters
  • In-Memory Postgres SQL database for tests
  • Flyway database migration
  • HikariCP as connection pool
  • Logging via Log4j with a xml template

Configuration

  • Start a PostgreSQL Database via RDS, Docker or locally
  • Create a Userpool with AWS Cognito if you need AWS Authentication.
  • Configure your application.conf and the docker.conf (src/main/resources/) (application.conf in test has to stay as it is, for running in a in-memory postgresql instance)

Environment variables

  • SQL_URL - database url by scheme jdbc:postgresql://host:port/database-name
  • SQL_USER - database user
  • SQL_PASSWORD - database password
  • NIC_IP - IP Address bounded to the http service default is 0.0.0.0
  • NIC_PORT - TCP Port used for the http service default is 8080
  • USER_POOL - Define an other cognito user pool than the preconfigured userpool

Run application

To run application, call:

sbt run

If you wanna restart your application without reloading of sbt, use (revolver sbt plugin):

sbt re-start

Run in Docker

For launching application in Docker, you must configure database docker instance and run docker image, generated by sbt.

Generating application docker image and publishing on localhost:

sbt docker:publishLocal

Example of running, generated docker image:

docker run --name akkaHttp -e SQL_USER=dbuser -e SQL_PASSWORD=dbpass -e SQL_URL=jdbcURL -d -p 9090:9000 APPLICATION_IMAGE
  • APPLICATION_IMAGE - id or name of application docker image

look at --link parameter if the database is also a docker container

Test

To run tests, call:

sbt test

To run all tests, with codecoverage, call:

sbt clean coverage test

To generate a coverage report afterwars the testrun, call:

sbt coverageReport

More Info

We will write a blog post soon on innFactory about microservice development.

Copyright & Contributers

Tobias Jonas

Copyright (C) 2017 innFactory Cloud- & DataEngineering

Published under the Apache 2 License.

Releases

No releases published

Packages

No packages published

Languages