Skip to content

Commit

Permalink
chore: updates, add new libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdaniel committed Dec 19, 2023
1 parent 9f4a2ca commit 8225de1
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion litefs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ lease:

consul:
url: "${FLY_CONSUL_URL}"
key: "litefs/${FLY_APP_NAME}"
key: "litefs/${FLY_APP_NAME}_2"
28 changes: 28 additions & 0 deletions priv/repo/seeds.exs
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,34 @@ AshHq.Docs.Library.create!(
upsert_identity: :unique_name
)

AshHq.Docs.Library.create!(
%{
name: "ash_money",
display_name: "AshMoney",
module_prefixes: ["AshMoney"],
order: 87,
description: """
A money extension that provides a money type and utilities for using it with various extensions.
"""
},
upsert?: true,
upsert_identity: :unique_name
)

AshHq.Docs.Library.create!(
%{
name: "ash_double_entry",
display_name: "AshDoubleEntry",
module_prefixes: ["AshDoubleEntry"],
order: 89,
description: """
A customizable double entry bookkeeping system backed by Ash resources.
"""
},
upsert?: true,
upsert_identity: :unique_name
)

AshHq.Docs.Library.create!(
%{
name: "reactor",
Expand Down

0 comments on commit 8225de1

Please sign in to comment.