Skip to content

sohosai/dashi-server

Repository files navigation

Service and Container

OpenAPI Documentation

https://sohosai.github.io/dashi-server

RDB (Container)

  • PostgreSQL

GraphDB (Container)

  • Neo4j

Meilisearch (Container)

  • Meilisearch

Object Strage (Service)

  • Cloudflare R2

構造

server では、Layered Architecture を採用している

※ SeaORM を採用している関係で構造が乱れているが、 SeaORM を使用する場合はこの構造のままの方が使いやすいので、この構造のままにしている

flowchart TD
    presentation --> application
    presentation --> domain
    presentation --> infrastructure
    application --> domain
    application --> entity
    domain --> entity
    infrastructure --> domain
    infrastructure --> entity
    init --> infrastructure
    init --> domain
    migration
Loading

presentation

  • src/presentation 以下の binary crate

application

  • src/application 以下の library crate

domain

  • src/domain 以下の library crate

infrastructure

  • src/infrastructure 以下の library crate
  • migration
  • entity

開発環境

開発環境の構築

1. .envの設置

シークレットな情報のため、詳細はscrapbox参照

2. docker-compose up (dev)

docker-compose -f dev.compose.yaml up -d

3. .envの編集

シークレットな情報のため、詳細はscrapbox参照

4. server の起動

cargo run --bin presentation

開発環境の削除

docker-compose -f dev.compose.yaml down --rmi all --volumes
sudo rm -rf postgres neo4j meilisearch init

各cointainerの登録情報の確認方法

  • meilisearch

以下のURLにアクセス

※マスターキー(MEILI_MASTER_KEY)及びポート番号(MEILI_PORT)は.env参照

http://localhost:<MEILI_PORT>/
  • neo4j

以下のURLにアクセス

※ユーザー名(NEO4J_USER)、パスワード(NEO4J_PASSWORD)及びポート番号(NEO4J_HTTP_PORT)は.env参照

http://localhost:<NEO4J_HTTP_PORT>/
  • postgres

shell上で以下コマンドを実行

※ユーザー名(POSTGRES_USER)、パスワード(POSTGRES_DB)は、.env参照

 sudo docker exec -it postgres psql -U <POSTGRES_USER> -d <POSTGRES_DB>

開発環境の削除

docker-compose -f db.compose.yaml down --rmi all --volumes
docker-compose -f server.compose.yaml down --rmi all --volumes
sudo rm -rf postgres neo4j meilisearch init

テーブルの更新

1. docker-compose up (entity)

docker-compose -f entity.compose.yaml up -d

2. Migration

cargo run --manifest-path ./migration/Cargo.toml -- refresh -u postgres://<POSTGRES_USER>:<POSTGRES_PASSWORD>@localhost:<POSTGRES_PORT>/<POSTGRES_DB>

3. Entityの生成

sea-orm-cli generate entity \
    -u postgres://<POSTGRES_USER>:<POSTGRES_PASSWORD>@localhost:<POSTGRES_PORT>/<POSTGRES_DB> \
    -o entity/src

本番環境

本番環境の構築

1. .envの設置

シークレットな情報のため、詳細はscrapbox参照

2. docker-compose up (prod)

docker-compose -f prod.compose.yaml up -d

初期データ

RDB

erDiagram
    Item |o--|| Label : "VisibleId<->VisibleId"
    Item {
        i32 Id PK "1"
        String VisibleId FK "0000"
        String Name "筑波大學"
        String ProductNumber ""
        String Description "ルートの物品です"
        Option_i32 PurchaseYear ""
        Option_i32 PurchasePrice ""
        Option_i32 Durability ""
        boolean IsDepreciation "false"
        Json Connector "vec![]"
        boolean IsRent "false"
        String Color ""
        datetime CreatedAt "Utc::now().naive_utc()"
        datetime UpdatedAt "Utc::now().naive_utc()"
        String Recipient ""
        String RentalDescription ""
        Option_datetime LatestRentAt ""
        Option_datetime ScheduledReplaceAt ""
        Option_datetime LatestReplaceAt ""
    }
    Label {
        String VisibleId UK "0000"
        boolean IsMax "true"
        String Record "Record::Nothing"
    }
    Connector {
        String id PK "autoincrement"
        String name UK "connector.csvのnameが入る"
        String status "Status::Active"
    }
    Color {
        String id PK "autoincrement"
        String name UK "color.csvのnameが入る"
        String hex_color_code UK "color.csvのhex_color_codeが入る"
        String status "Status::Active"
    }
Loading

Meilisearch

erDiagram
    Item {
        i32 Id PK "1"
        String VisibleId FK "0000"
        String Record "Record::Nothing"
        String Name "筑波大學"
        String ProductNumber ""
        String Description "ルートの物品です"
        Option_i32 PurchaseYear "None"
        Option_i32 PurchasePrice "None"
        Option_i32 Durability "None"
        boolean IsDepreciation "false"
        Json Connector "vec![]"
        boolean IsRent "false"
        String Color ""
        datetime CreatedAt "Utc::now().naive_utc()"
        datetime UpdatedAt "Utc::now().naive_utc()"
        String Recipient ""
        String RentalDescription ""
        datetime LatestRentAt "None"
        datetime ScheduledReplaceAt "None"
        datetime LatestReplaceAt "None"
    }
    Connector {
        String id PK "autoincrement"
        String name UK "connector.csvのnameが入る"
        String status "Status::Active"
    }
    Color {
        String id PK "autoincrement"
        String name UK "color.csvのnameが入る"
        String hex_color_code UK "color.csvのhex_color_codeが入る"
        String status "Status::Active"
    }
Loading

GraphDB

flowchart TD
    id1(("id: 1"))
Loading

Releases

No releases published

Packages

 
 
 

Languages