-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
90efcb5
commit 8ec942c
Showing
5 changed files
with
30 additions
and
22 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
![Elixir CI](https://github.com/ash-project/ash_csv/workflows/Ash%20CI/badge.svg) | ||
![Logo](https://github.com/ash-project/ash/blob/main/logos/cropped-for-header-black-text.png?raw=true#gh-light-mode-only) | ||
![Logo](https://github.com/ash-project/ash/blob/main/logos/cropped-for-header-white-text.png?raw=true#gh-dark-mode-only) | ||
|
||
![Elixir CI](https://github.com/ash-project/ash_csv/workflows/CI/badge.svg) | ||
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) | ||
[![Hex version badge](https://img.shields.io/hexpm/v/ash_csv.svg)](https://hex.pm/packages/ash_csv) | ||
[![Hexdocs badge](https://img.shields.io/badge/docs-hexdocs-purple)](https://hexdocs.pm/ash_csv) | ||
|
||
# AshCsv | ||
|
||
A CSV data layer for Ash. | ||
Welcome! This is the CSV Data Layer for [Ash Framework](https://hexdocs.pm/ash). | ||
|
||
## Tutorials | ||
|
||
## Installation | ||
- [Getting Started with GraphQL](documentation/tutorials/getting-started-with-ash-csv.md) | ||
|
||
```elixir | ||
def deps do | ||
[ | ||
{:ash_csv, "~> 0.9.7-rc.0"} | ||
] | ||
end | ||
``` | ||
## Reference | ||
|
||
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc) | ||
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can | ||
be found at [https://hexdocs.pm/ash_csv](https://hexdocs.pm/ash_csv). | ||
- [AshCsv.DataLayer DSL](documentation/dsls/DSL:-AshCsv.DataLayer.md) |
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Getting Started with CSV | ||
|
||
AshCsv offers basic support for storing and reading resources from csv files. | ||
|
||
## Installation | ||
|
||
Add `ash_csv` to your list of dependencies in `mix.exs`: | ||
|
||
```elixir | ||
{:ash_csv, "~> 0.9.7-rc.0"} | ||
``` | ||
|
||
For information on how to configure it, see the [DSL documentation.](/documentation/dsls/DSL:-AshCsv.DataLayer.md) |
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