stack: add page (#1509)

coverage
Max Strübing 2017-10-01 19:53:11 +02:00 committed by Waldir Pimenta
parent 7c5077bd8e
commit 48cfe76ee8
1 changed files with 27 additions and 0 deletions

27
pages/common/stack.md Normal file
View File

@ -0,0 +1,27 @@
# stack
> Tool for managing haskell projects.
- Create a new project:
`stack new {{project_name}}`
- Install all packages needed by a project:
`stack install`
- Compile a project:
`stack build`
- Run tests inside a project:
`stack test`
- Compile a project and re-compile every time a file changes:
`stack build --file-watch`
- Compile a project and execute a command after compilation:
`stack build --exec "{{command}}"`