Overview
To organize and manage all AI-related functionality within Studio, we need to create a new Django app dedicated to AI-related features, named automation.. The task involves setting up the new app, defining its structure, and ensuring proper integration within Studio.
Description and outcomes
- Use the command
python manage.py startapp automation to create the new Django app named automation.
- Update the project's settings to include the automation app in the
INSTALLED_APPS list. This update should be added to /contentcuration/contentcuration/dev_settings.py only.
- Inside the automation app directory, create necessary subdirectories (e.g., models, views, services, utils) with their corresponding placeholder files to organize the app's code
Accessibility requirements
Not applicable
Acceptance criteria
- A new Django app named
automation is created within Studio.
- The automation app is configured in the
INSTALLED_APPS list in /contentcuration/contentcuration/dev_settings.py.
- The app's directory structure includes relevant subdirectories and placeholder files.
Resources
Overview
To organize and manage all AI-related functionality within Studio, we need to create a new Django app dedicated to AI-related features, named automation.. The task involves setting up the new app, defining its structure, and ensuring proper integration within Studio.
Description and outcomes
python manage.py startapp automationto create the new Django app namedautomation.INSTALLED_APPSlist. This update should be added to/contentcuration/contentcuration/dev_settings.pyonly.Accessibility requirements
Not applicable
Acceptance criteria
automationis created within Studio.INSTALLED_APPSlist in/contentcuration/contentcuration/dev_settings.py.Resources