An open API service indexing awesome lists of open source software.

https://github.com/otbe/haskell-starter-vscode

simple haskell starter project with vscode integration
https://github.com/otbe/haskell-starter-vscode

Last synced: 11 months ago
JSON representation

simple haskell starter project with vscode integration

Awesome Lists containing this project

README

          

# haskell-starter

1. Install stack via homebrew
`$ brew install haskell-stack`
2. Add ~/.local to your PATH in ~/.profile (or ~/.bashrc or ~/.bash_profile)
`export PATH=$PATH:~/.local/bin`
3. Clone https://github.com/haskell/haskell-ide-engine
4. CD into `haskell-ide-engine` and run
`$ make build`
`$ make build-docs`
5. Open this repo in VSCode and install recommended extensions (popup in right bottom corner)
6. CD into this repo and run
`$ stack setup`
`$ stack build`
`$ stack exec server`

Note: this starter was generated with `$ stack new haskell-starter`