1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
<div class="hidden-warning"><a href="https://docs.haskellstack.org/"><img src="https://cdn.jsdelivr.net/gh/commercialhaskell/stack/doc/img/hidden-warning.svg"></a></div>
# Other resources
There are lots of resources available for learning more about Stack:
* `stack`, `stack --help` (or `-h`) — lists Stack's commands, and flags and
options common to those commands
* `stack <command> --help` (or `-h`) — provides help on the particular Stack
command, including flags and options specific to the command
* `stack --version` — identify the version and Git hash of the Stack executable
* `--verbose` (or `-v`) — much more info about internal operations (useful for
bug reports)
* The [home page](http://haskellstack.org)
* The [Stack mailing list](https://groups.google.com/d/forum/haskell-stack)
* The [FAQ](faq.md)
* The [haskell-stack tag on Stack Overflow](http://stackoverflow.com/questions/tagged/haskell-stack)
* [Another getting started with Stack tutorial](http://seanhess.github.io/2015/08/04/practical-haskell-getting-started.html)
* [Why is Stack not Cabal?](https://www.fpcomplete.com/blog/2015/06/why-is-stack-not-cabal)
Package description format specifications supported by Stack:
* Cabal's: a
[Cabal file](https://cabal.readthedocs.io/en/stable/cabal-package-description-file.html)
* Hpack's: a
[`package.yaml` file](https://github.com/sol/hpack?tab=readme-ov-file#documentation)
|