Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yamadapc/hscaffold
Very simple file/directory structure scaffolding writer monad EDSL
https://github.com/yamadapc/hscaffold
Last synced: 3 months ago
JSON representation
Very simple file/directory structure scaffolding writer monad EDSL
- Host: GitHub
- URL: https://github.com/yamadapc/hscaffold
- Owner: yamadapc
- License: mit
- Created: 2016-08-19T16:59:20.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-15T20:04:16.000Z (about 8 years ago)
- Last Synced: 2024-04-27T02:03:24.425Z (9 months ago)
- Language: Haskell
- Homepage: https://hackage.haskell.org/package/hscaffold
- Size: 87.9 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
- License: LICENSE
Awesome Lists containing this project
README
# hscaffold
Very simple file/directory structure scaffolding writer monad EDSL
```haskell
runHscaffold "." $ do
file "./.gitignore" (Text.unlines [ ".stack-work"
, "stuff"
, "here"
])
directory "./src" $ do
file "./Main.hs" "main = putStrLn \"Hello World\""
file "./Other.hs" "other = putStrLn \"Hello You\""
```## License
MIT