From 948f3b97a6fea9f81434ab79828bdf7d46888b2c Mon Sep 17 00:00:00 2001 From: Steven Turturo Date: Mon, 12 Aug 2024 00:12:40 -0700 Subject: [PATCH 1/2] feat: add community module for permify service --- modules/permify/index.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 modules/permify/index.md diff --git a/modules/permify/index.md b/modules/permify/index.md new file mode 100644 index 0000000..4a7fbb7 --- /dev/null +++ b/modules/permify/index.md @@ -0,0 +1,22 @@ +--- +title: Permify +categories: + - other +docs: + - id: go + url: https://github.com/theoriginalstove/testcontainers-permify + maintainer: community + example: | + ```go + container, err := permifytest.Run(ctx) + if err != nil { + return err + } + ``` + installation: | + ```bash + go get -u github.com/theoriginalstove/testcontainers-permify + ``` +--- + + From f656e51e17f0bc4be9df3c19eb7ae8d6200b320f Mon Sep 17 00:00:00 2001 From: Steven Turturo Date: Mon, 12 Aug 2024 00:21:45 -0700 Subject: [PATCH 2/2] fix: add description to index.md for permify --- modules/permify/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/permify/index.md b/modules/permify/index.md index 4a7fbb7..c4491ee 100644 --- a/modules/permify/index.md +++ b/modules/permify/index.md @@ -17,6 +17,8 @@ docs: ```bash go get -u github.com/theoriginalstove/testcontainers-permify ``` +description: | + Permify is an open-source authorization service for creating fine-grained and scalable authorization systems. ---