hi

Generate scaffold for cabal project

https://github.com/fujimura/hi.git#readme

Latest on Hackage:1.2.0.2

This package is not currently in any snapshots. If you're interested in using it, we recommend adding it to Stackage Nightly. Doing so will make builds more reliable, and allow stackage.org to host generated Haddocks.

BSD-3-Clause licensed by Fujimura Daisuke
Maintained by [email protected]

This application generates a scaffold for Haskell project from a Git repository.

This command

$ hi foo-bar-baz

will generate:

$ tree .
.
├── LICENSE
├── README.md
├── foo-bar-baz.cabal
├── src
│  └── Foo
│      └── Bar
│          ├── Baz
│          │  └── Internal.hs
│          └── Baz.hs
└── test
    ├── Foo
    │  └── Bar
    │      ├── Baz
    │      └── BazSpec.hs
    └── Spec.hs

See https://github.com/fujimura/hi for further usage.