1

Django の「アプリ」は再利用可能な機能の一部であると読みました。

これは私の頭の中では明確ではないので、コーディングを始める前に、Django プロ開発者が私の実際の例を判断し、必要に応じて正しい軌道に乗せてくれるかもしれません。

私の目標は、私たちのスタジオ用に非常に軽量な財務ダッシュボードを作成することです。

プロジェクトスターターとして Django Boilerplate を使用しています。

だから私のルートは次のようになります:

apps/
config/
db/
libs/
public/
static/
templates/
.gitignore
.manage.py

「apps/」には次のツリーがあります(それぞれがアプリです)

apps/invoice (manage all invoices)
apps/estimate (manage all estimates)
apps/customer (manage all customers for both invoice and estimates)
apps/idstore (manage a central repository of unique custom ID for each estimate and invoice)
apps/main (manage all global business logic such as routing etc..)

私はそれを正しくやっていますか?違う ?私はものを過度に複雑にしていますか?この組織では、開発ライフサイクル中に大きな問題に直面することはありますか?

ご意見ありがとうございます。

4

0 に答える 0