Skip to content

Commit

Permalink
VIP
Browse files Browse the repository at this point in the history
  • Loading branch information
shahryarjb committed Jun 29, 2024
1 parent b496dbc commit 6364fbc
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 81 deletions.
65 changes: 0 additions & 65 deletions guidance/crud.md

This file was deleted.

76 changes: 60 additions & 16 deletions lib/mishka_developer_tools.ex
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,29 @@ defmodule MishkaDeveloperTools do
@moduledoc """
# Mishka Elixir Developer Tools
We tried to deliver a series of our client's [**CMS**](https://github.com/mishka-group/mishka-cms) built on
[**Elixir**](https://elixir-lang.org/) at the start of the [**Mishka Group**](https://github.com/mishka-group) project,
but we recently archived this open-source project and have yet to make plans to rework and expand it.
This system was created using [**Phoenix**](https://www.phoenixframework.org/) and
[**Phoenix LiveView**](https://hexdocs.pm/phoenix_live_view/Phoenix.LiveView.html).
After a long period, a series of macros and functional modules emerged from this
project and our other projects, which we are gradually publishing in this library.
> **NOTICE**: Do not use the master branch; this library is under heavy development.
Expect version `0.1.3`, and for using the new features, please wait until a new release is out.
We tried to deliver a series of our client's [**CMS**](https://github.com/mishka-group/mishka-cms) built on [**Elixir**](https://elixir-lang.org/) at the start of the [**Mishka Group**](https://github.com/mishka-group) project, but we recently archived this open-source project and have yet to make plans to rework and expand it. This system was created using [**Phoenix**](https://www.phoenixframework.org/) and [**Phoenix LiveView**](https://hexdocs.pm/phoenix_live_view/Phoenix.LiveView.html). After a long period, a series of macros and functional modules emerged from this project and our other projects, which we are gradually publishing in this library.
> **NOTICE**: Do not use the master branch; this library is under heavy development. Expect version `0.1.6`, and for using the new features, please wait until a new release is out.
---
- #### [GuardedStruct](https://github.com/mishka-group/mishka_developer_tools/blob/master/guidance/guarded-struct.md)
- ### [GuardedStruct](https://github.com/mishka-group/mishka_developer_tools/blob/master/guidance/guarded-struct.md)
- #### [Basic CRUD](https://github.com/mishka-group/mishka_developer_tools/blob/master/guidance/crud.md)
> The creation of this macro will allow you to build `Structs` that provide you with a number of important options, including the following:
>
> 1. Validation
> 2. Sanitizing
> 3. Constructor
> 4. It provides the capacity to operate in a nested style simultaneously.
- #### [PermissionAccess](https://github.com/mishka-group/mishka_developer_tools/blob/master/guidance/permission-access.md)
---
- ### [PermissionAccess](https://github.com/mishka-group/mishka_developer_tools/blob/master/guidance/permission-access.md)
> Consider the scenario in which you are responsible for maintaining each user's access level in the database related to users.
> **It is unix like way**.
> Mishka developer tools provides some macros and modules to make creating your elixir application as easy as possible
---
> **Mishka developer tools** provides some macros and modules to make creating your elixir application as easy as possible
## Installation
Expand All @@ -31,11 +33,53 @@ defmodule MishkaDeveloperTools do
```elixir
def deps do
[
{:mishka_developer_tools, "~> 0.1.3"}
{:mishka_developer_tools, "~> 0.1.6"}
]
end
```
The docs can be found at [https://hexdocs.pm/mishka_developer_tools](https://hexdocs.pm/mishka_developer_tools).
[![Run in Livebook](https://livebook.dev/badge/v1/pink.svg)](https://livebook.dev/run?url=https%3A%2F%2Fgithub.com%2Fmishka-group%2Fmishka_developer_tools%2Fblob%2Fmaster%2Fguidance%2Fguarded-struct.livemd)
---
# Donate
If the project was useful for you, the only way you can donate to me is the following ways
| **BTC** | **ETH** | **DOGE** | **TRX** |
| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
| <img src="https://github.com/mishka-group/mishka_developer_tools/assets/8413604/230ea4bf-7e8f-4f18-99c9-0f940dd3c6eb" width="200"> | <img src="https://github.com/mishka-group/mishka_developer_tools/assets/8413604/0c8e677b-7240-4b0d-8b9e-bd1efca970fb" width="200"> | <img src="https://github.com/mishka-group/mishka_developer_tools/assets/8413604/3de9183e-c4c0-40fe-b2a1-2b9bb4268e3a" width="200"> | <img src="https://github.com/mishka-group/mishka_developer_tools/assets/8413604/aaa1f103-a7c7-43ed-8f39-20e4c8b9975e" width="200"> |
<details>
<summary>Donate addresses</summary>
**BTC**:‌
```
bc1q24pmrpn8v9dddgpg3vw9nld6hl9n5dkw5zkf2c
```
**ETH**:
```
0xD99feB9db83245dE8B9D23052aa8e62feedE764D
```
**DOGE**:
```
DGGT5PfoQsbz3H77sdJ1msfqzfV63Q3nyH
```
**TRX**:
```
TBamHas3wAxSEvtBcWKuT3zphckZo88puz
```
</details>
"""
end

0 comments on commit 6364fbc

Please sign in to comment.