Skip to content

Commit 2f0ac11

Browse files
authored
Merge pull request #4262 from akash5100/automation-app
New django app 'automation' for future AI features
2 parents d76efcf + 2a70ad2 commit 2f0ac11

File tree

8 files changed

+19
-1
lines changed

8 files changed

+19
-1
lines changed

contentcuration/automation/__init__.py

Whitespace-only changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# from django.contrib import admin
2+
3+
# Register your models here.

contentcuration/automation/apps.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from django.apps import AppConfig
2+
3+
4+
class AutomationConfig(AppConfig):
5+
default_auto_field = 'django.db.models.BigAutoField'
6+
name = 'automation'

contentcuration/automation/migrations/__init__.py

Whitespace-only changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# from django.db import models
2+
3+
# Create your models here.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# from django.test import TestCase
2+
3+
# Create your tests here.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# from django.shortcuts import render
2+
3+
# Create your views here.

contentcuration/contentcuration/dev_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
ROOT_URLCONF = "contentcuration.dev_urls"
77

8-
INSTALLED_APPS += ("drf_yasg",)
8+
INSTALLED_APPS += ("drf_yasg", "automation")

0 commit comments

Comments
 (0)