diff --git a/mhackspace/CONTRIBUTORS.txt b/CONTRIBUTORS.txt similarity index 100% rename from mhackspace/CONTRIBUTORS.txt rename to CONTRIBUTORS.txt diff --git a/mhackspace/COPYING b/COPYING similarity index 100% rename from mhackspace/COPYING rename to COPYING diff --git a/mhackspace/LICENSE b/LICENSE similarity index 100% rename from mhackspace/LICENSE rename to LICENSE diff --git a/mhackspace/README.org b/README.org similarity index 100% rename from mhackspace/README.org rename to README.org diff --git a/mhackspace/compose/django/Dockerfile b/compose/django/Dockerfile similarity index 100% rename from mhackspace/compose/django/Dockerfile rename to compose/django/Dockerfile diff --git a/mhackspace/compose/django/Dockerfile-dev b/compose/django/Dockerfile-dev similarity index 100% rename from mhackspace/compose/django/Dockerfile-dev rename to compose/django/Dockerfile-dev diff --git a/mhackspace/compose/django/entrypoint.sh b/compose/django/entrypoint.sh similarity index 100% rename from mhackspace/compose/django/entrypoint.sh rename to compose/django/entrypoint.sh diff --git a/mhackspace/compose/django/gunicorn.sh b/compose/django/gunicorn.sh similarity index 100% rename from mhackspace/compose/django/gunicorn.sh rename to compose/django/gunicorn.sh diff --git a/mhackspace/compose/django/start-dev.sh b/compose/django/start-dev.sh similarity index 100% rename from mhackspace/compose/django/start-dev.sh rename to compose/django/start-dev.sh diff --git a/mhackspace/compose/nginx/Dockerfile b/compose/nginx/Dockerfile similarity index 100% rename from mhackspace/compose/nginx/Dockerfile rename to compose/nginx/Dockerfile diff --git a/mhackspace/compose/nginx/dhparams.example.pem b/compose/nginx/dhparams.example.pem similarity index 100% rename from mhackspace/compose/nginx/dhparams.example.pem rename to compose/nginx/dhparams.example.pem diff --git a/mhackspace/compose/nginx/nginx-secure.conf b/compose/nginx/nginx-secure.conf similarity index 100% rename from mhackspace/compose/nginx/nginx-secure.conf rename to compose/nginx/nginx-secure.conf diff --git a/mhackspace/compose/nginx/nginx.conf b/compose/nginx/nginx.conf similarity index 100% rename from mhackspace/compose/nginx/nginx.conf rename to compose/nginx/nginx.conf diff --git a/mhackspace/compose/nginx/start.sh b/compose/nginx/start.sh similarity index 100% rename from mhackspace/compose/nginx/start.sh rename to compose/nginx/start.sh diff --git a/mhackspace/compose/postgres/Dockerfile b/compose/postgres/Dockerfile similarity index 100% rename from mhackspace/compose/postgres/Dockerfile rename to compose/postgres/Dockerfile diff --git a/mhackspace/compose/postgres/backup.sh b/compose/postgres/backup.sh similarity index 100% rename from mhackspace/compose/postgres/backup.sh rename to compose/postgres/backup.sh diff --git a/mhackspace/compose/postgres/list-backups.sh b/compose/postgres/list-backups.sh similarity index 100% rename from mhackspace/compose/postgres/list-backups.sh rename to compose/postgres/list-backups.sh diff --git a/mhackspace/compose/postgres/restore.sh b/compose/postgres/restore.sh similarity index 100% rename from mhackspace/compose/postgres/restore.sh rename to compose/postgres/restore.sh diff --git a/mhackspace/config/__init__.py b/config/__init__.py similarity index 100% rename from mhackspace/config/__init__.py rename to config/__init__.py diff --git a/mhackspace/config/settings/__init__.py b/config/settings/__init__.py similarity index 100% rename from mhackspace/config/settings/__init__.py rename to config/settings/__init__.py diff --git a/mhackspace/config/settings/common.py b/config/settings/common.py similarity index 100% rename from mhackspace/config/settings/common.py rename to config/settings/common.py diff --git a/mhackspace/config/settings/local.py b/config/settings/local.py similarity index 100% rename from mhackspace/config/settings/local.py rename to config/settings/local.py diff --git a/mhackspace/config/settings/production.py b/config/settings/production.py similarity index 100% rename from mhackspace/config/settings/production.py rename to config/settings/production.py diff --git a/mhackspace/config/settings/test.py b/config/settings/test.py similarity index 100% rename from mhackspace/config/settings/test.py rename to config/settings/test.py diff --git a/mhackspace/config/urls.py b/config/urls.py similarity index 100% rename from mhackspace/config/urls.py rename to config/urls.py diff --git a/mhackspace/config/wsgi.py b/config/wsgi.py similarity index 100% rename from mhackspace/config/wsgi.py rename to config/wsgi.py diff --git a/mhackspace/dev.yml b/dev.yml similarity index 100% rename from mhackspace/dev.yml rename to dev.yml diff --git a/mhackspace/docker-compose.yml b/docker-compose.yml similarity index 100% rename from mhackspace/docker-compose.yml rename to docker-compose.yml diff --git a/mhackspace/docs/Makefile b/docs/Makefile similarity index 100% rename from mhackspace/docs/Makefile rename to docs/Makefile diff --git a/mhackspace/docs/__init__.py b/docs/__init__.py similarity index 100% rename from mhackspace/docs/__init__.py rename to docs/__init__.py diff --git a/mhackspace/docs/conf.py b/docs/conf.py similarity index 100% rename from mhackspace/docs/conf.py rename to docs/conf.py diff --git a/mhackspace/docs/deploy.rst b/docs/deploy.rst similarity index 100% rename from mhackspace/docs/deploy.rst rename to docs/deploy.rst diff --git a/mhackspace/docs/docker_ec2.rst b/docs/docker_ec2.rst similarity index 100% rename from mhackspace/docs/docker_ec2.rst rename to docs/docker_ec2.rst diff --git a/mhackspace/docs/index.rst b/docs/index.rst similarity index 100% rename from mhackspace/docs/index.rst rename to docs/index.rst diff --git a/mhackspace/docs/install.rst b/docs/install.rst similarity index 100% rename from mhackspace/docs/install.rst rename to docs/install.rst diff --git a/mhackspace/docs/make.bat b/docs/make.bat similarity index 100% rename from mhackspace/docs/make.bat rename to docs/make.bat diff --git a/mhackspace/env.example b/env.example similarity index 100% rename from mhackspace/env.example rename to env.example diff --git a/mhackspace/gulpfile.js b/gulpfile.js similarity index 100% rename from mhackspace/gulpfile.js rename to gulpfile.js diff --git a/mhackspace/manage.py b/manage.py similarity index 100% rename from mhackspace/manage.py rename to manage.py diff --git a/mhackspace/mhackspace/__init__.py b/mhackspace/__init__.py similarity index 100% rename from mhackspace/mhackspace/__init__.py rename to mhackspace/__init__.py diff --git a/mhackspace/mhackspace/contrib/__init__.py b/mhackspace/contrib/__init__.py similarity index 100% rename from mhackspace/mhackspace/contrib/__init__.py rename to mhackspace/contrib/__init__.py diff --git a/mhackspace/mhackspace/contrib/sites/__init__.py b/mhackspace/contrib/sites/__init__.py similarity index 100% rename from mhackspace/mhackspace/contrib/sites/__init__.py rename to mhackspace/contrib/sites/__init__.py diff --git a/mhackspace/mhackspace/contrib/sites/migrations/0001_initial.py b/mhackspace/contrib/sites/migrations/0001_initial.py similarity index 100% rename from mhackspace/mhackspace/contrib/sites/migrations/0001_initial.py rename to mhackspace/contrib/sites/migrations/0001_initial.py diff --git a/mhackspace/mhackspace/contrib/sites/migrations/0002_alter_domain_unique.py b/mhackspace/contrib/sites/migrations/0002_alter_domain_unique.py similarity index 100% rename from mhackspace/mhackspace/contrib/sites/migrations/0002_alter_domain_unique.py rename to mhackspace/contrib/sites/migrations/0002_alter_domain_unique.py diff --git a/mhackspace/mhackspace/contrib/sites/migrations/0003_set_site_domain_and_name.py b/mhackspace/contrib/sites/migrations/0003_set_site_domain_and_name.py similarity index 100% rename from mhackspace/mhackspace/contrib/sites/migrations/0003_set_site_domain_and_name.py rename to mhackspace/contrib/sites/migrations/0003_set_site_domain_and_name.py diff --git a/mhackspace/mhackspace/contrib/sites/migrations/__init__.py b/mhackspace/contrib/sites/migrations/__init__.py similarity index 100% rename from mhackspace/mhackspace/contrib/sites/migrations/__init__.py rename to mhackspace/contrib/sites/migrations/__init__.py diff --git a/mhackspace/mhackspace/static/css/project.css b/mhackspace/static/css/project.css similarity index 100% rename from mhackspace/mhackspace/static/css/project.css rename to mhackspace/static/css/project.css diff --git a/mhackspace/mhackspace/static/fonts/.gitkeep b/mhackspace/static/fonts/.gitkeep similarity index 100% rename from mhackspace/mhackspace/static/fonts/.gitkeep rename to mhackspace/static/fonts/.gitkeep diff --git a/mhackspace/mhackspace/static/images/favicon.ico b/mhackspace/static/images/favicon.ico similarity index 100% rename from mhackspace/mhackspace/static/images/favicon.ico rename to mhackspace/static/images/favicon.ico diff --git a/mhackspace/mhackspace/static/js/project.js b/mhackspace/static/js/project.js similarity index 100% rename from mhackspace/mhackspace/static/js/project.js rename to mhackspace/static/js/project.js diff --git a/mhackspace/mhackspace/static/sass/project.scss b/mhackspace/static/sass/project.scss similarity index 100% rename from mhackspace/mhackspace/static/sass/project.scss rename to mhackspace/static/sass/project.scss diff --git a/mhackspace/mhackspace/templates/403_csrf.html b/mhackspace/templates/403_csrf.html similarity index 100% rename from mhackspace/mhackspace/templates/403_csrf.html rename to mhackspace/templates/403_csrf.html diff --git a/mhackspace/mhackspace/templates/404.html b/mhackspace/templates/404.html similarity index 100% rename from mhackspace/mhackspace/templates/404.html rename to mhackspace/templates/404.html diff --git a/mhackspace/mhackspace/templates/500.html b/mhackspace/templates/500.html similarity index 100% rename from mhackspace/mhackspace/templates/500.html rename to mhackspace/templates/500.html diff --git a/mhackspace/mhackspace/templates/account/account_inactive.html b/mhackspace/templates/account/account_inactive.html similarity index 100% rename from mhackspace/mhackspace/templates/account/account_inactive.html rename to mhackspace/templates/account/account_inactive.html diff --git a/mhackspace/mhackspace/templates/account/base.html b/mhackspace/templates/account/base.html similarity index 100% rename from mhackspace/mhackspace/templates/account/base.html rename to mhackspace/templates/account/base.html diff --git a/mhackspace/mhackspace/templates/account/email.html b/mhackspace/templates/account/email.html similarity index 100% rename from mhackspace/mhackspace/templates/account/email.html rename to mhackspace/templates/account/email.html diff --git a/mhackspace/mhackspace/templates/account/email_confirm.html b/mhackspace/templates/account/email_confirm.html similarity index 100% rename from mhackspace/mhackspace/templates/account/email_confirm.html rename to mhackspace/templates/account/email_confirm.html diff --git a/mhackspace/mhackspace/templates/account/login.html b/mhackspace/templates/account/login.html similarity index 100% rename from mhackspace/mhackspace/templates/account/login.html rename to mhackspace/templates/account/login.html diff --git a/mhackspace/mhackspace/templates/account/logout.html b/mhackspace/templates/account/logout.html similarity index 100% rename from mhackspace/mhackspace/templates/account/logout.html rename to mhackspace/templates/account/logout.html diff --git a/mhackspace/mhackspace/templates/account/password_change.html b/mhackspace/templates/account/password_change.html similarity index 100% rename from mhackspace/mhackspace/templates/account/password_change.html rename to mhackspace/templates/account/password_change.html diff --git a/mhackspace/mhackspace/templates/account/password_reset.html b/mhackspace/templates/account/password_reset.html similarity index 100% rename from mhackspace/mhackspace/templates/account/password_reset.html rename to mhackspace/templates/account/password_reset.html diff --git a/mhackspace/mhackspace/templates/account/password_reset_done.html b/mhackspace/templates/account/password_reset_done.html similarity index 100% rename from mhackspace/mhackspace/templates/account/password_reset_done.html rename to mhackspace/templates/account/password_reset_done.html diff --git a/mhackspace/mhackspace/templates/account/password_reset_from_key.html b/mhackspace/templates/account/password_reset_from_key.html similarity index 100% rename from mhackspace/mhackspace/templates/account/password_reset_from_key.html rename to mhackspace/templates/account/password_reset_from_key.html diff --git a/mhackspace/mhackspace/templates/account/password_reset_from_key_done.html b/mhackspace/templates/account/password_reset_from_key_done.html similarity index 100% rename from mhackspace/mhackspace/templates/account/password_reset_from_key_done.html rename to mhackspace/templates/account/password_reset_from_key_done.html diff --git a/mhackspace/mhackspace/templates/account/password_set.html b/mhackspace/templates/account/password_set.html similarity index 100% rename from mhackspace/mhackspace/templates/account/password_set.html rename to mhackspace/templates/account/password_set.html diff --git a/mhackspace/mhackspace/templates/account/signup.html b/mhackspace/templates/account/signup.html similarity index 100% rename from mhackspace/mhackspace/templates/account/signup.html rename to mhackspace/templates/account/signup.html diff --git a/mhackspace/mhackspace/templates/account/signup_closed.html b/mhackspace/templates/account/signup_closed.html similarity index 100% rename from mhackspace/mhackspace/templates/account/signup_closed.html rename to mhackspace/templates/account/signup_closed.html diff --git a/mhackspace/mhackspace/templates/account/verification_sent.html b/mhackspace/templates/account/verification_sent.html similarity index 100% rename from mhackspace/mhackspace/templates/account/verification_sent.html rename to mhackspace/templates/account/verification_sent.html diff --git a/mhackspace/mhackspace/templates/account/verified_email_required.html b/mhackspace/templates/account/verified_email_required.html similarity index 100% rename from mhackspace/mhackspace/templates/account/verified_email_required.html rename to mhackspace/templates/account/verified_email_required.html diff --git a/mhackspace/mhackspace/templates/base.html b/mhackspace/templates/base.html similarity index 100% rename from mhackspace/mhackspace/templates/base.html rename to mhackspace/templates/base.html diff --git a/mhackspace/mhackspace/templates/bootstrap4/field.html b/mhackspace/templates/bootstrap4/field.html similarity index 100% rename from mhackspace/mhackspace/templates/bootstrap4/field.html rename to mhackspace/templates/bootstrap4/field.html diff --git a/mhackspace/mhackspace/templates/bootstrap4/layout/field_errors_block.html b/mhackspace/templates/bootstrap4/layout/field_errors_block.html similarity index 100% rename from mhackspace/mhackspace/templates/bootstrap4/layout/field_errors_block.html rename to mhackspace/templates/bootstrap4/layout/field_errors_block.html diff --git a/mhackspace/mhackspace/templates/pages/about.html b/mhackspace/templates/pages/about.html similarity index 100% rename from mhackspace/mhackspace/templates/pages/about.html rename to mhackspace/templates/pages/about.html diff --git a/mhackspace/mhackspace/templates/pages/home.html b/mhackspace/templates/pages/home.html similarity index 100% rename from mhackspace/mhackspace/templates/pages/home.html rename to mhackspace/templates/pages/home.html diff --git a/mhackspace/mhackspace/templates/users/user_detail.html b/mhackspace/templates/users/user_detail.html similarity index 100% rename from mhackspace/mhackspace/templates/users/user_detail.html rename to mhackspace/templates/users/user_detail.html diff --git a/mhackspace/mhackspace/templates/users/user_form.html b/mhackspace/templates/users/user_form.html similarity index 100% rename from mhackspace/mhackspace/templates/users/user_form.html rename to mhackspace/templates/users/user_form.html diff --git a/mhackspace/mhackspace/templates/users/user_list.html b/mhackspace/templates/users/user_list.html similarity index 100% rename from mhackspace/mhackspace/templates/users/user_list.html rename to mhackspace/templates/users/user_list.html diff --git a/mhackspace/mhackspace/users/__init__.py b/mhackspace/users/__init__.py similarity index 100% rename from mhackspace/mhackspace/users/__init__.py rename to mhackspace/users/__init__.py diff --git a/mhackspace/mhackspace/users/adapters.py b/mhackspace/users/adapters.py similarity index 100% rename from mhackspace/mhackspace/users/adapters.py rename to mhackspace/users/adapters.py diff --git a/mhackspace/mhackspace/users/admin.py b/mhackspace/users/admin.py similarity index 100% rename from mhackspace/mhackspace/users/admin.py rename to mhackspace/users/admin.py diff --git a/mhackspace/mhackspace/users/apps.py b/mhackspace/users/apps.py similarity index 100% rename from mhackspace/mhackspace/users/apps.py rename to mhackspace/users/apps.py diff --git a/mhackspace/mhackspace/users/migrations/0001_initial.py b/mhackspace/users/migrations/0001_initial.py similarity index 100% rename from mhackspace/mhackspace/users/migrations/0001_initial.py rename to mhackspace/users/migrations/0001_initial.py diff --git a/mhackspace/mhackspace/users/migrations/__init__.py b/mhackspace/users/migrations/__init__.py similarity index 100% rename from mhackspace/mhackspace/users/migrations/__init__.py rename to mhackspace/users/migrations/__init__.py diff --git a/mhackspace/mhackspace/users/models.py b/mhackspace/users/models.py similarity index 100% rename from mhackspace/mhackspace/users/models.py rename to mhackspace/users/models.py diff --git a/mhackspace/mhackspace/users/tests/__init__.py b/mhackspace/users/tests/__init__.py similarity index 100% rename from mhackspace/mhackspace/users/tests/__init__.py rename to mhackspace/users/tests/__init__.py diff --git a/mhackspace/mhackspace/users/tests/factories.py b/mhackspace/users/tests/factories.py similarity index 100% rename from mhackspace/mhackspace/users/tests/factories.py rename to mhackspace/users/tests/factories.py diff --git a/mhackspace/mhackspace/users/tests/test_admin.py b/mhackspace/users/tests/test_admin.py similarity index 100% rename from mhackspace/mhackspace/users/tests/test_admin.py rename to mhackspace/users/tests/test_admin.py diff --git a/mhackspace/mhackspace/users/tests/test_models.py b/mhackspace/users/tests/test_models.py similarity index 100% rename from mhackspace/mhackspace/users/tests/test_models.py rename to mhackspace/users/tests/test_models.py diff --git a/mhackspace/mhackspace/users/tests/test_urls.py b/mhackspace/users/tests/test_urls.py similarity index 100% rename from mhackspace/mhackspace/users/tests/test_urls.py rename to mhackspace/users/tests/test_urls.py diff --git a/mhackspace/mhackspace/users/tests/test_views.py b/mhackspace/users/tests/test_views.py similarity index 100% rename from mhackspace/mhackspace/users/tests/test_views.py rename to mhackspace/users/tests/test_views.py diff --git a/mhackspace/mhackspace/users/urls.py b/mhackspace/users/urls.py similarity index 100% rename from mhackspace/mhackspace/users/urls.py rename to mhackspace/users/urls.py diff --git a/mhackspace/mhackspace/users/views.py b/mhackspace/users/views.py similarity index 100% rename from mhackspace/mhackspace/users/views.py rename to mhackspace/users/views.py diff --git a/mhackspace/package.json b/package.json similarity index 100% rename from mhackspace/package.json rename to package.json diff --git a/mhackspace/pytest.ini b/pytest.ini similarity index 100% rename from mhackspace/pytest.ini rename to pytest.ini diff --git a/mhackspace/requirements/base.txt b/requirements/base.txt similarity index 100% rename from mhackspace/requirements/base.txt rename to requirements/base.txt diff --git a/mhackspace/requirements/local.txt b/requirements/local.txt similarity index 100% rename from mhackspace/requirements/local.txt rename to requirements/local.txt diff --git a/mhackspace/requirements/production.txt b/requirements/production.txt similarity index 100% rename from mhackspace/requirements/production.txt rename to requirements/production.txt diff --git a/mhackspace/requirements/test.txt b/requirements/test.txt similarity index 100% rename from mhackspace/requirements/test.txt rename to requirements/test.txt diff --git a/mhackspace/setup.cfg b/setup.cfg similarity index 100% rename from mhackspace/setup.cfg rename to setup.cfg diff --git a/mhackspace/utility/install_os_dependencies.sh b/utility/install_os_dependencies.sh similarity index 100% rename from mhackspace/utility/install_os_dependencies.sh rename to utility/install_os_dependencies.sh diff --git a/mhackspace/utility/install_python_dependencies.sh b/utility/install_python_dependencies.sh similarity index 100% rename from mhackspace/utility/install_python_dependencies.sh rename to utility/install_python_dependencies.sh diff --git a/mhackspace/utility/requirements-jessie.apt b/utility/requirements-jessie.apt similarity index 100% rename from mhackspace/utility/requirements-jessie.apt rename to utility/requirements-jessie.apt diff --git a/mhackspace/utility/requirements-trusty.apt b/utility/requirements-trusty.apt similarity index 100% rename from mhackspace/utility/requirements-trusty.apt rename to utility/requirements-trusty.apt diff --git a/mhackspace/utility/requirements-xenial.apt b/utility/requirements-xenial.apt similarity index 100% rename from mhackspace/utility/requirements-xenial.apt rename to utility/requirements-xenial.apt