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
- Host: GitHub
- URL: https://github.com/jesty/kotlin-fossavotabona
- Owner: jesty
- Created: 2017-11-09T20:38:44.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-17T12:40:26.000Z (about 7 years ago)
- Last Synced: 2025-01-25T21:11:31.955Z (4 months ago)
- Topics: backend, jvm, jvm-languages, kotlin, kotlin-javascript-sdk, react
- Language: Kotlin
- Size: 119 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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