This is a repository intended to serve as a starting point if you want to bootstrap a project in Kotlin.
It could be useful if you want to start from scratch a kata or a little exercise or project. The idea is that you don't have to worry about the boilerplate
- Latest stable kotlin version
- Best practices applied:
- Some useful resources to start coding
You just need to manually clone this repo
We recommend to follow the next step by step process in order to avoid adding the bootstrap project commits to your project Git history:
- Use this repositoy template
- Clone your project
- Move to the project directory:
cd your-project-name - Build the project for the first time:
./gradlew build - Run all the checks:
./gradlew check. This will do some checks that you can perform with isolated commands:- Klint using Spotless:
./gradlew spotlessCheck. If you want to fix style issues automatically:./gradlew spotlessApply. - Kotlin test:
./gradlew test.
- Klint using Spotless:
- Start coding!
This hopefully helpful utility has been developed by CodelyTV and [contributors][link-contributors].
We'll try to maintain this project as simple as possible, but Pull Requests are welcomed!
The MIT License (MIT). Please see License File for more information.