We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
新規プロジェクトを設計し、リポジトリパターンとレイヤードアーキテクチャを適用します。このアーキテクチャはコードの再利用性と保守性を向上させ、各レイヤーの責任を明確にします。
新規プロジェクトの開始に伴い、適切なアーキテクチャを設計する必要があります。このIssueではリポジトリパターンとレイヤードアーキテクチャを適用したプロジェクト構造を設計します。
models
repositories
services
controllers
(該当するものがあれば追加してください)
The text was updated successfully, but these errors were encountered:
🎉 init: Set project
fac5f1f
Related issue: YJU-OKURA#5
yuminn-k
No branches or pull requests
📝 Issueの概要
新規プロジェクトを設計し、リポジトリパターンとレイヤードアーキテクチャを適用します。このアーキテクチャはコードの再利用性と保守性を向上させ、各レイヤーの責任を明確にします。
📚 背景情報
新規プロジェクトの開始に伴い、適切なアーキテクチャを設計する必要があります。このIssueではリポジトリパターンとレイヤードアーキテクチャを適用したプロジェクト構造を設計します。
📋 具体的な作業内容
models
,repositories
,services
,controllers
といったディレクトリを作成し、各ディレクトリの役割を定義します。repositories
ディレクトリには、データアクセスロジックを定義します。services
ディレクトリには、ビジネスロジックを定義します。controllers
ディレクトリには、ユーザーのリクエストを処理し、レスポンスを返すロジックを定義します。📎 関連するIssueやドキュメント
🖼️ 参考スクリーンショットや図
(該当するものがあれば追加してください)
🔄 Issueの進行状況
models
,repositories
,services
,controllers
ディレクトリの作成と役割の定義repositories
でのデータアクセスロジックの定義services
でのビジネスロジックの定義controllers
でのリクエスト処理ロジックの定義The text was updated successfully, but these errors were encountered: