https://github.com/stackbuilders/cis194-templates
cis194 Haskell course templates
https://github.com/stackbuilders/cis194-templates
Last synced: 6 months ago
JSON representation
cis194 Haskell course templates
- Host: GitHub
- URL: https://github.com/stackbuilders/cis194-templates
- Owner: stackbuilders
- License: mit
- Created: 2016-01-16T21:15:52.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2019-09-06T14:07:25.000Z (over 6 years ago)
- Last Synced: 2025-04-07T21:51:32.329Z (10 months ago)
- Language: Haskell
- Homepage:
- Size: 263 KB
- Stars: 5
- Watchers: 10
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cis194-templates
[](https://circleci.com/gh/stackbuilders/cis194-templates)
## Requirements
Install [haskell-stack](https://docs.haskellstack.org/en/stable/README/#how-to-install).
## Getting Started
Clone the repository:
```
git clone https://github.com/stackbuilders/cis194-templates.git
```
Install the dependencies and compile the project:
```
stack build
```
Run the tests:
```
stack test
```
### Developing with nix-shell
Install [nix](https://nixos.org/nix) package manager:
```
sh <(curl https://nixos.org/nix/install)
```
Spawn a new shell with all the dependencies defined at [shell.nix](shell.nix):
```
nix-shell
```
## Tips & Tricks
Run linter:
```
stack test :hlint
```
## License
Licensed under the [MIT License](LICENSE).