├── .dockerignore ├── .env.example ├── .gitignore ├── Makefile ├── apps ├── __init__.py ├── common │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── enquiries │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── urls.py │ └── views.py ├── profiles │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── exceptions.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── renderers.py │ ├── serializers.py │ ├── signals.py │ ├── urls.py │ └── views.py ├── properties │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── exceptions.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_property_user.py │ │ └── __init__.py │ ├── models.py │ ├── pagination.py │ ├── serializers.py │ ├── urls.py │ └── views.py ├── ratings │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── urls.py │ └── views.py └── users │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── managers.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── serializers.py │ └── views.py ├── client ├── .dockerignore ├── README.md ├── docker │ └── local │ │ └── Dockerfile ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.jsx │ ├── app │ └── store.js │ ├── components │ ├── Footer.jsx │ ├── Header.jsx │ ├── NotFound.jsx │ ├── Property.jsx │ ├── Spinner.jsx │ └── Title.jsx │ ├── features │ ├── auth │ │ ├── authService.js │ │ └── authSlice.js │ └── properties │ │ ├── propertyAPIService.js │ │ └── propertySlice.js │ ├── images │ └── buildings.jpg │ ├── index.css │ ├── index.js │ ├── pages │ ├── ActivatePage.jsx │ ├── HomePage.jsx │ ├── LoginPage.jsx │ ├── PropertiesPage.jsx │ └── RegisterPage.jsx │ └── serviceWorker.js ├── conftest.py ├── docker-compose.yml ├── docker └── local │ ├── django │ ├── Dockerfile │ ├── celery │ │ ├── flower │ │ │ └── start │ │ └── worker │ │ │ └── start │ ├── entrypoint │ └── start │ └── nginx │ ├── Dockerfile │ └── default.conf ├── manage.py ├── pyproject.toml ├── pytest.ini ├── real_estate ├── __init__.py ├── asgi.py ├── celery.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── development.py │ └── production.py ├── urls.py └── wsgi.py ├── requirements.txt ├── sample_images ├── buildings.jpg ├── house_sample.jpg ├── house_sample2.jpg ├── interior_sample.jpg └── profile_default.png ├── setup.cfg └── tests ├── __init__.py ├── factories.py ├── profiles ├── __init__.py └── test_models.py └── users ├── __init__.py └── test_models.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/Makefile -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/common/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/common/admin.py -------------------------------------------------------------------------------- /apps/common/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/common/apps.py -------------------------------------------------------------------------------- /apps/common/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/common/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/common/models.py -------------------------------------------------------------------------------- /apps/common/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/common/tests.py -------------------------------------------------------------------------------- /apps/common/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /apps/enquiries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/enquiries/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/enquiries/admin.py -------------------------------------------------------------------------------- /apps/enquiries/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/enquiries/apps.py -------------------------------------------------------------------------------- /apps/enquiries/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/enquiries/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/enquiries/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/enquiries/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/enquiries/models.py -------------------------------------------------------------------------------- /apps/enquiries/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/enquiries/serializers.py -------------------------------------------------------------------------------- /apps/enquiries/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/enquiries/urls.py -------------------------------------------------------------------------------- /apps/enquiries/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/enquiries/views.py -------------------------------------------------------------------------------- /apps/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/profiles/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/profiles/admin.py -------------------------------------------------------------------------------- /apps/profiles/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/profiles/apps.py -------------------------------------------------------------------------------- /apps/profiles/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/profiles/exceptions.py -------------------------------------------------------------------------------- /apps/profiles/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/profiles/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/profiles/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/profiles/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/profiles/models.py -------------------------------------------------------------------------------- /apps/profiles/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/profiles/renderers.py -------------------------------------------------------------------------------- /apps/profiles/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/profiles/serializers.py -------------------------------------------------------------------------------- /apps/profiles/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/profiles/signals.py -------------------------------------------------------------------------------- /apps/profiles/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/profiles/urls.py -------------------------------------------------------------------------------- /apps/profiles/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/profiles/views.py -------------------------------------------------------------------------------- /apps/properties/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/properties/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/properties/admin.py -------------------------------------------------------------------------------- /apps/properties/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/properties/apps.py -------------------------------------------------------------------------------- /apps/properties/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/properties/exceptions.py -------------------------------------------------------------------------------- /apps/properties/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/properties/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/properties/migrations/0002_property_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/properties/migrations/0002_property_user.py -------------------------------------------------------------------------------- /apps/properties/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/properties/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/properties/models.py -------------------------------------------------------------------------------- /apps/properties/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/properties/pagination.py -------------------------------------------------------------------------------- /apps/properties/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/properties/serializers.py -------------------------------------------------------------------------------- /apps/properties/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/properties/urls.py -------------------------------------------------------------------------------- /apps/properties/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/properties/views.py -------------------------------------------------------------------------------- /apps/ratings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/ratings/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/ratings/admin.py -------------------------------------------------------------------------------- /apps/ratings/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/ratings/apps.py -------------------------------------------------------------------------------- /apps/ratings/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/ratings/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/ratings/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/ratings/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/ratings/models.py -------------------------------------------------------------------------------- /apps/ratings/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/ratings/serializers.py -------------------------------------------------------------------------------- /apps/ratings/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/ratings/urls.py -------------------------------------------------------------------------------- /apps/ratings/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/ratings/views.py -------------------------------------------------------------------------------- /apps/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/users/admin.py -------------------------------------------------------------------------------- /apps/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/users/apps.py -------------------------------------------------------------------------------- /apps/users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/users/forms.py -------------------------------------------------------------------------------- /apps/users/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/users/managers.py -------------------------------------------------------------------------------- /apps/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/users/models.py -------------------------------------------------------------------------------- /apps/users/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/apps/users/serializers.py -------------------------------------------------------------------------------- /apps/users/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /client/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | README.md -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/README.md -------------------------------------------------------------------------------- /client/docker/local/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/docker/local/Dockerfile -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/App.jsx -------------------------------------------------------------------------------- /client/src/app/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/app/store.js -------------------------------------------------------------------------------- /client/src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/components/Footer.jsx -------------------------------------------------------------------------------- /client/src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/components/Header.jsx -------------------------------------------------------------------------------- /client/src/components/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/components/NotFound.jsx -------------------------------------------------------------------------------- /client/src/components/Property.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/components/Property.jsx -------------------------------------------------------------------------------- /client/src/components/Spinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/components/Spinner.jsx -------------------------------------------------------------------------------- /client/src/components/Title.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/components/Title.jsx -------------------------------------------------------------------------------- /client/src/features/auth/authService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/features/auth/authService.js -------------------------------------------------------------------------------- /client/src/features/auth/authSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/features/auth/authSlice.js -------------------------------------------------------------------------------- /client/src/features/properties/propertyAPIService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/features/properties/propertyAPIService.js -------------------------------------------------------------------------------- /client/src/features/properties/propertySlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/features/properties/propertySlice.js -------------------------------------------------------------------------------- /client/src/images/buildings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/images/buildings.jpg -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/pages/ActivatePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/pages/ActivatePage.jsx -------------------------------------------------------------------------------- /client/src/pages/HomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/pages/HomePage.jsx -------------------------------------------------------------------------------- /client/src/pages/LoginPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/pages/LoginPage.jsx -------------------------------------------------------------------------------- /client/src/pages/PropertiesPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/pages/PropertiesPage.jsx -------------------------------------------------------------------------------- /client/src/pages/RegisterPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/pages/RegisterPage.jsx -------------------------------------------------------------------------------- /client/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/client/src/serviceWorker.js -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/conftest.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/local/django/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/docker/local/django/Dockerfile -------------------------------------------------------------------------------- /docker/local/django/celery/flower/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/docker/local/django/celery/flower/start -------------------------------------------------------------------------------- /docker/local/django/celery/worker/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/docker/local/django/celery/worker/start -------------------------------------------------------------------------------- /docker/local/django/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/docker/local/django/entrypoint -------------------------------------------------------------------------------- /docker/local/django/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/docker/local/django/start -------------------------------------------------------------------------------- /docker/local/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/docker/local/nginx/Dockerfile -------------------------------------------------------------------------------- /docker/local/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/docker/local/nginx/default.conf -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/manage.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/pytest.ini -------------------------------------------------------------------------------- /real_estate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/real_estate/__init__.py -------------------------------------------------------------------------------- /real_estate/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/real_estate/asgi.py -------------------------------------------------------------------------------- /real_estate/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/real_estate/celery.py -------------------------------------------------------------------------------- /real_estate/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_estate/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/real_estate/settings/base.py -------------------------------------------------------------------------------- /real_estate/settings/development.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/real_estate/settings/development.py -------------------------------------------------------------------------------- /real_estate/settings/production.py: -------------------------------------------------------------------------------- 1 | from .base import * 2 | -------------------------------------------------------------------------------- /real_estate/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/real_estate/urls.py -------------------------------------------------------------------------------- /real_estate/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/real_estate/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_images/buildings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/sample_images/buildings.jpg -------------------------------------------------------------------------------- /sample_images/house_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/sample_images/house_sample.jpg -------------------------------------------------------------------------------- /sample_images/house_sample2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/sample_images/house_sample2.jpg -------------------------------------------------------------------------------- /sample_images/interior_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/sample_images/interior_sample.jpg -------------------------------------------------------------------------------- /sample_images/profile_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/sample_images/profile_default.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/tests/factories.py -------------------------------------------------------------------------------- /tests/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/profiles/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/tests/profiles/test_models.py -------------------------------------------------------------------------------- /tests/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/users/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/API-Imperfect/django-real-estate/HEAD/tests/users/test_models.py --------------------------------------------------------------------------------