From 621fef14f5115b30dd8dc7ddfaf277638c53f5b1 Mon Sep 17 00:00:00 2001 From: Gesche Gierse Date: Tue, 11 May 2021 22:33:02 +0200 Subject: [PATCH] refactor: remove unnecessary toplevel folder --- stories/.gitignore => .gitignore | 0 stories/README.md => README.md | 0 .../user_interface_mockup.png | Bin stories/manage.py => manage.py | 0 stories/requirements.txt => requirements.txt | 0 stories/{stories => }/__init__.py | 0 stories/{stories => }/asgi.py | 0 stories/{stories => }/settings_local.py | 0 stories/{stories => }/urls.py | 0 stories/{stories => }/wsgi.py | 0 .../writingtogether => writingtogether}/__init__.py | 0 .../writingtogether => writingtogether}/admin.py | 0 .../writingtogether => writingtogether}/apps.py | 0 .../migrations/0001_initial.py | 0 .../migrations/0002_auto_20210419_2224.py | 0 .../migrations/__init__.py | 0 .../writingtogether => writingtogether}/models.py | 0 .../templates/registration/login.html | 0 .../templates/writingtogether/detail.html | 0 .../templates/writingtogether/finished.html | 0 .../templates/writingtogether/index.html | 0 .../templates/writingtogether/story_part.html | 0 .../templates/writingtogether/storyround_form.html | 0 .../templates/writingtogether/wait_for_others.html | 0 .../writingtogether => writingtogether}/tests.py | 0 .../tests/__init__.py | 0 .../tests/test_model_functions.py | 0 .../tests/test_views.py | 0 .../writingtogether => writingtogether}/urls.py | 0 .../writingtogether => writingtogether}/views.py | 0 30 files changed, 0 insertions(+), 0 deletions(-) rename stories/.gitignore => .gitignore (100%) rename stories/README.md => README.md (100%) rename {stories/documentation => documentation}/user_interface_mockup.png (100%) rename stories/manage.py => manage.py (100%) rename stories/requirements.txt => requirements.txt (100%) rename stories/{stories => }/__init__.py (100%) rename stories/{stories => }/asgi.py (100%) rename stories/{stories => }/settings_local.py (100%) rename stories/{stories => }/urls.py (100%) rename stories/{stories => }/wsgi.py (100%) rename {stories/writingtogether => writingtogether}/__init__.py (100%) rename {stories/writingtogether => writingtogether}/admin.py (100%) rename {stories/writingtogether => writingtogether}/apps.py (100%) rename {stories/writingtogether => writingtogether}/migrations/0001_initial.py (100%) rename {stories/writingtogether => writingtogether}/migrations/0002_auto_20210419_2224.py (100%) rename {stories/writingtogether => writingtogether}/migrations/__init__.py (100%) rename {stories/writingtogether => writingtogether}/models.py (100%) rename {stories/writingtogether => writingtogether}/templates/registration/login.html (100%) rename {stories/writingtogether => writingtogether}/templates/writingtogether/detail.html (100%) rename {stories/writingtogether => writingtogether}/templates/writingtogether/finished.html (100%) rename {stories/writingtogether => writingtogether}/templates/writingtogether/index.html (100%) rename {stories/writingtogether => writingtogether}/templates/writingtogether/story_part.html (100%) rename {stories/writingtogether => writingtogether}/templates/writingtogether/storyround_form.html (100%) rename {stories/writingtogether => writingtogether}/templates/writingtogether/wait_for_others.html (100%) rename {stories/writingtogether => writingtogether}/tests.py (100%) rename {stories/writingtogether => writingtogether}/tests/__init__.py (100%) rename {stories/writingtogether => writingtogether}/tests/test_model_functions.py (100%) rename {stories/writingtogether => writingtogether}/tests/test_views.py (100%) rename {stories/writingtogether => writingtogether}/urls.py (100%) rename {stories/writingtogether => writingtogether}/views.py (100%) diff --git a/stories/.gitignore b/.gitignore similarity index 100% rename from stories/.gitignore rename to .gitignore diff --git a/stories/README.md b/README.md similarity index 100% rename from stories/README.md rename to README.md diff --git a/stories/documentation/user_interface_mockup.png b/documentation/user_interface_mockup.png similarity index 100% rename from stories/documentation/user_interface_mockup.png rename to documentation/user_interface_mockup.png diff --git a/stories/manage.py b/manage.py similarity index 100% rename from stories/manage.py rename to manage.py diff --git a/stories/requirements.txt b/requirements.txt similarity index 100% rename from stories/requirements.txt rename to requirements.txt diff --git a/stories/stories/__init__.py b/stories/__init__.py similarity index 100% rename from stories/stories/__init__.py rename to stories/__init__.py diff --git a/stories/stories/asgi.py b/stories/asgi.py similarity index 100% rename from stories/stories/asgi.py rename to stories/asgi.py diff --git a/stories/stories/settings_local.py b/stories/settings_local.py similarity index 100% rename from stories/stories/settings_local.py rename to stories/settings_local.py diff --git a/stories/stories/urls.py b/stories/urls.py similarity index 100% rename from stories/stories/urls.py rename to stories/urls.py diff --git a/stories/stories/wsgi.py b/stories/wsgi.py similarity index 100% rename from stories/stories/wsgi.py rename to stories/wsgi.py diff --git a/stories/writingtogether/__init__.py b/writingtogether/__init__.py similarity index 100% rename from stories/writingtogether/__init__.py rename to writingtogether/__init__.py diff --git a/stories/writingtogether/admin.py b/writingtogether/admin.py similarity index 100% rename from stories/writingtogether/admin.py rename to writingtogether/admin.py diff --git a/stories/writingtogether/apps.py b/writingtogether/apps.py similarity index 100% rename from stories/writingtogether/apps.py rename to writingtogether/apps.py diff --git a/stories/writingtogether/migrations/0001_initial.py b/writingtogether/migrations/0001_initial.py similarity index 100% rename from stories/writingtogether/migrations/0001_initial.py rename to writingtogether/migrations/0001_initial.py diff --git a/stories/writingtogether/migrations/0002_auto_20210419_2224.py b/writingtogether/migrations/0002_auto_20210419_2224.py similarity index 100% rename from stories/writingtogether/migrations/0002_auto_20210419_2224.py rename to writingtogether/migrations/0002_auto_20210419_2224.py diff --git a/stories/writingtogether/migrations/__init__.py b/writingtogether/migrations/__init__.py similarity index 100% rename from stories/writingtogether/migrations/__init__.py rename to writingtogether/migrations/__init__.py diff --git a/stories/writingtogether/models.py b/writingtogether/models.py similarity index 100% rename from stories/writingtogether/models.py rename to writingtogether/models.py diff --git a/stories/writingtogether/templates/registration/login.html b/writingtogether/templates/registration/login.html similarity index 100% rename from stories/writingtogether/templates/registration/login.html rename to writingtogether/templates/registration/login.html diff --git a/stories/writingtogether/templates/writingtogether/detail.html b/writingtogether/templates/writingtogether/detail.html similarity index 100% rename from stories/writingtogether/templates/writingtogether/detail.html rename to writingtogether/templates/writingtogether/detail.html diff --git a/stories/writingtogether/templates/writingtogether/finished.html b/writingtogether/templates/writingtogether/finished.html similarity index 100% rename from stories/writingtogether/templates/writingtogether/finished.html rename to writingtogether/templates/writingtogether/finished.html diff --git a/stories/writingtogether/templates/writingtogether/index.html b/writingtogether/templates/writingtogether/index.html similarity index 100% rename from stories/writingtogether/templates/writingtogether/index.html rename to writingtogether/templates/writingtogether/index.html diff --git a/stories/writingtogether/templates/writingtogether/story_part.html b/writingtogether/templates/writingtogether/story_part.html similarity index 100% rename from stories/writingtogether/templates/writingtogether/story_part.html rename to writingtogether/templates/writingtogether/story_part.html diff --git a/stories/writingtogether/templates/writingtogether/storyround_form.html b/writingtogether/templates/writingtogether/storyround_form.html similarity index 100% rename from stories/writingtogether/templates/writingtogether/storyround_form.html rename to writingtogether/templates/writingtogether/storyround_form.html diff --git a/stories/writingtogether/templates/writingtogether/wait_for_others.html b/writingtogether/templates/writingtogether/wait_for_others.html similarity index 100% rename from stories/writingtogether/templates/writingtogether/wait_for_others.html rename to writingtogether/templates/writingtogether/wait_for_others.html diff --git a/stories/writingtogether/tests.py b/writingtogether/tests.py similarity index 100% rename from stories/writingtogether/tests.py rename to writingtogether/tests.py diff --git a/stories/writingtogether/tests/__init__.py b/writingtogether/tests/__init__.py similarity index 100% rename from stories/writingtogether/tests/__init__.py rename to writingtogether/tests/__init__.py diff --git a/stories/writingtogether/tests/test_model_functions.py b/writingtogether/tests/test_model_functions.py similarity index 100% rename from stories/writingtogether/tests/test_model_functions.py rename to writingtogether/tests/test_model_functions.py diff --git a/stories/writingtogether/tests/test_views.py b/writingtogether/tests/test_views.py similarity index 100% rename from stories/writingtogether/tests/test_views.py rename to writingtogether/tests/test_views.py diff --git a/stories/writingtogether/urls.py b/writingtogether/urls.py similarity index 100% rename from stories/writingtogether/urls.py rename to writingtogether/urls.py diff --git a/stories/writingtogether/views.py b/writingtogether/views.py similarity index 100% rename from stories/writingtogether/views.py rename to writingtogether/views.py