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

https://github.com/jesty/kotlin-fossavotabona

Examples used during my presentation at Codemotion Milan 2017
https://github.com/jesty/kotlin-fossavotabona

backend jvm jvm-languages kotlin kotlin-javascript-sdk react

Last synced: 2 months ago
JSON representation

Examples used during my presentation at Codemotion Milan 2017

Awesome Lists containing this project

README

        

# kotlin-fossavotabona
Examples used during my talk at Codemotion Milan 2017.

Here the full presentation: https://www.slideshare.net/jesty/kotlin-maybe-its-the-right-time-81928424

* kotlin-slides: contains all the code examples used during the presentations

The other projects are the two examples at the end of the presentation:

* kotlin-codemotion: To run the backend, made with Spring Boot, use `./gradlew build && java -jar build/libs/kotlin-codemotion-0.0.1-SNAPSHOT.jar`. Please be sure that backend starts on port 8080. If you want to try the API you can use the curl commands below:
* curl -XGET http://localhost:8080/contacts
* curl -XGET http://localhost:8080/contacts/1
* curl -XPOST http://localhost:8080/contacts -H 'Content-Type: application/json' -d '{"name":"Davide", "surname":"Cerbo"}'
* curl -XDELETE http://localhost:8080/contacts/1
* kotlin-codemotion-front: To run the frontend, made with Kotlin, use `yarn start`. After visit http://locahost:3000