Let's say I have a folder with some .hs
files and I want to wrap it in a project
If I have cabal install
and stack
it's no big deal:
- use
cabal init
(interactive choosing stuff) - go on with
stack init
but when I just go the easy - just install stack
route I don't have cabal install
available - only stack
Now stack init
does not work without a .cabal
(or .package
) file and for stack new
I know of no template that does not set up additional files/folders.
Probably I'm missing something obvious and there is a stack
parameter/command for this?
If not: What's the proper way to handle this? Install cabal-install
?