Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/shivam-880/akka-http-starter-kit

Hello World example using Akka Http.
https://github.com/shivam-880/akka-http-starter-kit

akka-http scala

Last synced: 7 days ago
JSON representation

Hello World example using Akka Http.

Awesome Lists containing this project

README

        

# akka-http-starter-kit
Hello World example using Akka Http.

## Dev
```
$ cd akka-http-starter-kit
$ sbt> universal:stage
```

## Build Package
```
$ cd akka-http-starter-kit
$ sbt> universal:packageBin
```

## Start API Server
```
$ cd target/universal
$ unzip akka-http-starter-kit-1.0-SNAPSHOT.zip
$ cd akka-http-starter-kit-0.1.0-SNAPSHOT
$ bin/start.sh
$ tail -f logs/stdout.log
```

## Test
```
$ curl http://127.0.0.1:8080/
Hello World!
```