/java-kata-starter

A starting point for a kata in Java 14 with nothing more than Docker

Primary LanguageJava

Java Kata Starter

A starting point for a code kata in Java using IntelliJ.

Prerequisites

  1. IntelliJ

Up & Running

git clone https://github.com/aedenj/java-kata-starter.git ~/projects/katas/hard-problem
cd ~/projects/katas/hard-problem;rm -rf .git; idea .

Since I frequently use this project I like to wrap everything up in an alias like this,

alias jks='f(){ git clone git@github.com:aedenj/java-kata-starter.git $1; cd $1;rm -rf .git README.md .gitignore; idea .; unset -f f; }; f'

Usage:

jks ~/problem-of-your-choice

Follow the usual TDD process of red, green and refactor.