diff --git a/.gitignore b/.gitignore index 69848de..a3c13c4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,6 @@ .vscode -src/static \ No newline at end of file +src/static +db.sqlite3 +geckodriver.log +virtualenv +**__pycache__** \ No newline at end of file diff --git a/src/functional_tests/__init__.py b/functional_tests/__init__.py similarity index 100% rename from src/functional_tests/__init__.py rename to functional_tests/__init__.py diff --git a/src/functional_tests/tests.py b/functional_tests/tests.py similarity index 100% rename from src/functional_tests/tests.py rename to functional_tests/tests.py diff --git a/src/lists/__init__.py b/lists/__init__.py similarity index 100% rename from src/lists/__init__.py rename to lists/__init__.py diff --git a/src/lists/admin.py b/lists/admin.py similarity index 100% rename from src/lists/admin.py rename to lists/admin.py diff --git a/src/lists/apps.py b/lists/apps.py similarity index 100% rename from src/lists/apps.py rename to lists/apps.py diff --git a/src/lists/models.py b/lists/models.py similarity index 100% rename from src/lists/models.py rename to lists/models.py diff --git a/src/lists/static/base.css b/lists/static/base.css similarity index 100% rename from src/lists/static/base.css rename to lists/static/base.css diff --git a/src/lists/static/bootstrap/css/bootstrap-theme.css b/lists/static/bootstrap/css/bootstrap-theme.css similarity index 100% rename from src/lists/static/bootstrap/css/bootstrap-theme.css rename to lists/static/bootstrap/css/bootstrap-theme.css diff --git a/src/lists/static/bootstrap/css/bootstrap-theme.css.map b/lists/static/bootstrap/css/bootstrap-theme.css.map similarity index 100% rename from src/lists/static/bootstrap/css/bootstrap-theme.css.map rename to lists/static/bootstrap/css/bootstrap-theme.css.map diff --git a/src/lists/static/bootstrap/css/bootstrap-theme.min.css b/lists/static/bootstrap/css/bootstrap-theme.min.css similarity index 100% rename from src/lists/static/bootstrap/css/bootstrap-theme.min.css rename to lists/static/bootstrap/css/bootstrap-theme.min.css diff --git a/src/lists/static/bootstrap/css/bootstrap.css b/lists/static/bootstrap/css/bootstrap.css similarity index 100% rename from src/lists/static/bootstrap/css/bootstrap.css rename to lists/static/bootstrap/css/bootstrap.css diff --git a/src/lists/static/bootstrap/css/bootstrap.css.map b/lists/static/bootstrap/css/bootstrap.css.map similarity index 100% rename from src/lists/static/bootstrap/css/bootstrap.css.map rename to lists/static/bootstrap/css/bootstrap.css.map diff --git a/src/lists/static/bootstrap/css/bootstrap.min.css b/lists/static/bootstrap/css/bootstrap.min.css similarity index 100% rename from src/lists/static/bootstrap/css/bootstrap.min.css rename to lists/static/bootstrap/css/bootstrap.min.css diff --git a/src/lists/static/bootstrap/fonts/glyphicons-halflings-regular.eot b/lists/static/bootstrap/fonts/glyphicons-halflings-regular.eot similarity index 100% rename from src/lists/static/bootstrap/fonts/glyphicons-halflings-regular.eot rename to lists/static/bootstrap/fonts/glyphicons-halflings-regular.eot diff --git a/src/lists/static/bootstrap/fonts/glyphicons-halflings-regular.svg b/lists/static/bootstrap/fonts/glyphicons-halflings-regular.svg similarity index 100% rename from src/lists/static/bootstrap/fonts/glyphicons-halflings-regular.svg rename to lists/static/bootstrap/fonts/glyphicons-halflings-regular.svg diff --git a/src/lists/static/bootstrap/fonts/glyphicons-halflings-regular.ttf b/lists/static/bootstrap/fonts/glyphicons-halflings-regular.ttf similarity index 100% rename from src/lists/static/bootstrap/fonts/glyphicons-halflings-regular.ttf rename to lists/static/bootstrap/fonts/glyphicons-halflings-regular.ttf diff --git a/src/lists/static/bootstrap/fonts/glyphicons-halflings-regular.woff b/lists/static/bootstrap/fonts/glyphicons-halflings-regular.woff similarity index 100% rename from src/lists/static/bootstrap/fonts/glyphicons-halflings-regular.woff rename to lists/static/bootstrap/fonts/glyphicons-halflings-regular.woff diff --git a/src/lists/static/bootstrap/fonts/glyphicons-halflings-regular.woff2 b/lists/static/bootstrap/fonts/glyphicons-halflings-regular.woff2 similarity index 100% rename from src/lists/static/bootstrap/fonts/glyphicons-halflings-regular.woff2 rename to lists/static/bootstrap/fonts/glyphicons-halflings-regular.woff2 diff --git a/src/lists/static/bootstrap/js/bootstrap.js b/lists/static/bootstrap/js/bootstrap.js similarity index 100% rename from src/lists/static/bootstrap/js/bootstrap.js rename to lists/static/bootstrap/js/bootstrap.js diff --git a/src/lists/static/bootstrap/js/bootstrap.min.js b/lists/static/bootstrap/js/bootstrap.min.js similarity index 100% rename from src/lists/static/bootstrap/js/bootstrap.min.js rename to lists/static/bootstrap/js/bootstrap.min.js diff --git a/src/lists/static/bootstrap/js/npm.js b/lists/static/bootstrap/js/npm.js similarity index 100% rename from src/lists/static/bootstrap/js/npm.js rename to lists/static/bootstrap/js/npm.js diff --git a/src/lists/templates/base.html b/lists/templates/base.html similarity index 100% rename from src/lists/templates/base.html rename to lists/templates/base.html diff --git a/src/lists/templates/home.html b/lists/templates/home.html similarity index 100% rename from src/lists/templates/home.html rename to lists/templates/home.html diff --git a/src/lists/templates/list.html b/lists/templates/list.html similarity index 100% rename from src/lists/templates/list.html rename to lists/templates/list.html diff --git a/src/lists/tests.py b/lists/tests.py similarity index 100% rename from src/lists/tests.py rename to lists/tests.py diff --git a/src/lists/urls.py b/lists/urls.py similarity index 100% rename from src/lists/urls.py rename to lists/urls.py diff --git a/src/lists/views.py b/lists/views.py similarity index 100% rename from src/lists/views.py rename to lists/views.py diff --git a/src/manage.py b/manage.py similarity index 100% rename from src/manage.py rename to manage.py diff --git a/src/.gitignore b/src/.gitignore deleted file mode 100644 index 2dd724d..0000000 --- a/src/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -db.sqlite3 -geckodriver.log -virtualenv -**__pycache__** \ No newline at end of file diff --git a/src/superlists/__init__.py b/superlists/__init__.py similarity index 100% rename from src/superlists/__init__.py rename to superlists/__init__.py diff --git a/src/superlists/settings.py b/superlists/settings.py similarity index 100% rename from src/superlists/settings.py rename to superlists/settings.py diff --git a/src/superlists/urls.py b/superlists/urls.py similarity index 100% rename from src/superlists/urls.py rename to superlists/urls.py diff --git a/src/superlists/wsgi.py b/superlists/wsgi.py similarity index 100% rename from src/superlists/wsgi.py rename to superlists/wsgi.py