Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pbrisbin/stack-templates
https://github.com/pbrisbin/stack-templates
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pbrisbin/stack-templates
- Owner: pbrisbin
- Created: 2016-07-04T00:39:57.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-03T14:51:07.000Z (over 6 years ago)
- Last Synced: 2024-11-09T07:47:28.999Z (2 months ago)
- Language: Haskell
- Size: 32.2 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stack Templates
My personal stack templates.
## Usage
```
stack new [, ...] \
https://raw.githubusercontent.com/pbrisbin/stack-templates/master/.hsfiles
```## Templates
### simple
Simple library-plus-executable.
- Hpack
- HSpec
- HLint, StylishHaskell, and Brittany configuration
- Circle-2.0 CI
- MakefileSee [Haskell Project Checklist](https://pbrisbin.com/posts/haskell_project_checklist/).
### yesod-docker
**NOTE**: This one is a bit out of date right now, and may not work.
- Yesod with [some updated conventions](https://pbrisbin.com/posts/tee-io_lessons_learned/)
- Docker-based development and Deployment## Building Templates
Build any templates that are out of date with `sources/`:
```console
./shake
```**NOTE**: shake won't know about new files, so use `--rebuild`.
Test templates by creating a project from them:
```console
./shake test
```