-
Notifications
You must be signed in to change notification settings - Fork 228
Closed
Labels
Description
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 namedautomation
. - 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.