From fbaf3b1bf9a498c323f494b1868625a588099f1d Mon Sep 17 00:00:00 2001 From: Aaron Louie Date: Thu, 14 Nov 2019 10:37:06 -0500 Subject: [PATCH] Adds basic Django and Viewflow structure --- .idea/cr_connect_workflow.iml | 33 +++++ .../inspectionProfiles/profiles_settings.xml | 6 + .idea/misc.xml | 7 + .idea/modules.xml | 8 ++ .idea/workspace.xml | 101 ++++++++++++++ app/__init__.py | 0 app/admin.py | 3 + app/apps.py | 5 + app/flows.py | 47 +++++++ app/migrations/0001_initial.py | 28 ++++ app/migrations/__init__.py | 0 app/models.py | 7 + app/tests.py | 3 + app/views.py | 3 + cr_connect_workflow/__init__.py | 0 cr_connect_workflow/settings.py | 126 ++++++++++++++++++ cr_connect_workflow/urls.py | 26 ++++ cr_connect_workflow/wsgi.py | 16 +++ manage.py | 21 +++ 19 files changed, 440 insertions(+) create mode 100644 .idea/cr_connect_workflow.iml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/workspace.xml create mode 100644 app/__init__.py create mode 100644 app/admin.py create mode 100644 app/apps.py create mode 100644 app/flows.py create mode 100644 app/migrations/0001_initial.py create mode 100644 app/migrations/__init__.py create mode 100644 app/models.py create mode 100644 app/tests.py create mode 100644 app/views.py create mode 100644 cr_connect_workflow/__init__.py create mode 100644 cr_connect_workflow/settings.py create mode 100644 cr_connect_workflow/urls.py create mode 100644 cr_connect_workflow/wsgi.py create mode 100755 manage.py diff --git a/.idea/cr_connect_workflow.iml b/.idea/cr_connect_workflow.iml new file mode 100644 index 00000000..5054d6e6 --- /dev/null +++ b/.idea/cr_connect_workflow.iml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 00000000..105ce2da --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..4994d04f --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..a9127472 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 00000000..10b602d9 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,101 @@ + + + + + + + + + + + + + +