Project-Stage-Academy / UA1198ForumSB

UA-1198 Project Stage Forum SandBox
0 stars 0 forks source link

Define apps in the project #28

Closed mehalyna closed 1 week ago

mehalyna commented 1 week ago

Add Required Django Apps to Starter Project

Structure the Django starter project by creating the necessary apps as per the provided project schema. Each app will house components such as models, views, serializers, URLs, and permissions to handle different segments of the platform.

Task Description:

Step 1: Create the 'users' App

Step 2: Create the 'profiles' App

Step 3: Create the 'projects' App

Step 4: Create the 'communications' App

Step 5: Create the 'dashboard' App

Step 6: Register New Apps in Settings

Step 7: Verify App Structure

Deliverables:

27

projectname/ ├── projectname/ │ ├── init.py │ ├── settings.py │ ├── urls.py │ ├── asgi.py │ ├── wsgi.py ├── manage.py ├── users/ │ ├── migrations/ │ ├── models.py │ ├── views.py │ ├── serializers.py │ ├── urls.py │ ├── permissions.py ├── profiles/ │ ├── migrations/ │ ├── models.py │ ├── views.py │ ├── serializers.py │ ├── urls.py ├── projects/ │ ├── migrations/ │ ├── models.py │ ├── views.py │ ├── serializers.py │ ├── urls.py ├── communications/ │ ├── migrations/ │ ├── models.py │ ├── views.py │ ├── serializers.pya │ ├── urls.pya ├── dashboard/ │ ├── migrations/ │ ├── models.py │ ├── views.py │ ├── serializers.py │ ├── urls.py ├── templates/ ├── static/