Skip to content

amaziahub/tunic

Repository files navigation

tunic – A minimal setup for a Kotlin application using Gradle.

Kotlin Gradle Last Commit License Made with ❤️


Prerequisites

Ensure the following are installed on your system:


Project Structure

simple-gradle-kotlin-project/ 
├── build.gradle.kts # Gradle build script (Kotlin DSL) 
├── settings.gradle.kts # Gradle settings 
├── Makefile # Makefile for simplified task execution 
├── src/ 
│ ├── main/ 
│ │ └── kotlin/ 
│ │     └── Main.kt # Main application code 
│ └── test/ 
│   └── kotlin/ 
│       └── MainTest.kt # Unit tests 
└── build/ # Generated build files (ignored in VCS)

Usage

To simplify project management, a Makefile is provided. Use the following commands to perform common tasks:

Build the Project

Compiles the source code and generates the build artifacts.

  make build

Run Tests

Executes the unit tests and generates a report.

  make test

View Test Report

Opens the HTML test report in your default browser.

  make report

Run the Application

Runs the main application.

  make run

Happy coding! 🎉

About

A minimal setup for a Kotlin application using Gradle

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors