-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
API v2 #57
Merged
Merged
API v2 #57
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
437e2b1
Add first haskell implementation: outputs types as the current one does
f-f 95bcf6d
Generate defaults too
f-f 3e4ac82
Implement #46, #49, #54
f-f e0a654a
Remove problematic objects
f-f b709a28
Split into several modules
f-f 5ddd425
Read file from disk instead of fetching it
f-f 5f417ad
Remove package.yaml and set version bounds
f-f ee0430c
Add some comments
f-f af56740
Merge branch 'master' into haskell-implementation
f-f bd6af8c
Fix logic for requiring keys of records
f-f d85f05d
Add a simple deployment
f-f 81b7567
Remove weird module
arianvp d06d100
Nixify the haskell build
arianvp d888d16
Fix check-source
arianvp 232c40d
Comment out building of examples for now
arianvp cda59b9
Move dhall-kubernetes-generator to own subfolder
arianvp 8e8b8c1
Fix build
arianvp 9d3149b
Remove convert.py script
arianvp 0a4f0b8
Add deployment example
f-f eafe9f2
Update examples to new API 🎉🎉
f-f be3e4b0
Remove api folder
f-f e0cfdb2
Fix #47: remove cyclic imports
f-f 5183695
Merge branch 'master' into haskell-implementation
f-f 0d8bff7
Rewrite readme for new examples
f-f 0bb3316
Document --documents pattern
f-f 0d09a93
Freeze big records and unions too
f-f d747296
Fix link
f-f a535564
Freeze types typesUnion and defaults
arianvp d1626c0
Update to dhall-1.22
f-f 2356ec5
Update hashes
f-f 6db1789
Merge branch 'master' into haskell-implementation
f-f File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@arianvp https://www.haskell.org/cabal/users-guide/developing-packages.html#accessing-data-files-from-package-code
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TL;DR: you want it to refer to static data without using Template Haskell (it includes other stuff too)
But you're right that we're not using it here 😄