What is the default stack template?

When you do not specify a template, what is the default value?

i.e. when you run the command stack new foo.

+4
source share
1 answer

As you can see from the source code , this is a template with a name new-template.

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

In fact, when you try to execute your command, it says this:

sibi { ~ }-> stack new foo
Downloading template "new-template" to create project "foo" in foo/ ...
+6
source

Source: https://habr.com/ru/post/1650755/


All Articles