Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's stack's default template?

When you don't specify the template, what is the default?

i.e. when running the command stack new foo.

like image 592
Steven Shaw Avatar asked Aug 10 '16 05:08

Steven Shaw


1 Answers

As seen in the source code, it's the template named new-template.

It's located here: https://github.com/commercialhaskell/stack-templates/blob/master/new-template.hsfiles

In fact, when you try out your command - it says so:

sibi { ~ }-> stack new foo
Downloading template "new-template" to create project "foo" in foo/ ...
like image 146
Sibi Avatar answered Sep 21 '22 18:09

Sibi