{"id":26604178,"url":"https://github.com/sameerqureshii/django-real-estate","last_synced_at":"2025-09-13T03:34:32.905Z","repository":{"id":282042312,"uuid":"947259237","full_name":"sameerqureshii/django-real-estate","owner":"sameerqureshii","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-12T13:14:26.000Z","size":1378,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-05T04:42:23.359Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sameerqureshii.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-12T12:06:13.000Z","updated_at":"2025-03-12T13:14:29.000Z","dependencies_parsed_at":null,"dependency_job_id":"597e7905-aab5-4139-9fe9-bf16f99e48e4","html_url":"https://github.com/sameerqureshii/django-real-estate","commit_stats":null,"previous_names":["sameerqureshii/django-real-estate"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sameerqureshii/django-real-estate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sameerqureshii%2Fdjango-real-estate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sameerqureshii%2Fdjango-real-estate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sameerqureshii%2Fdjango-real-estate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sameerqureshii%2Fdjango-real-estate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sameerqureshii","download_url":"https://codeload.github.com/sameerqureshii/django-real-estate/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sameerqureshii%2Fdjango-real-estate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274915031,"owners_count":25373188,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-13T02:00:10.085Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-23T19:28:37.573Z","updated_at":"2025-09-13T03:34:32.893Z","avatar_url":"https://github.com/sameerqureshii.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Django Real Estate CRUD Application\n\n## Introduction\nThis is a simple Django CRUD (Create, Read, Update, Delete) application for managing real estate properties. The project allows users to add, view, update, and delete property listings.\n\n## Features\n- Add new property listings\n- View all properties\n- Update property details\n- Delete property listings\n\n## Installation\n### Prerequisites\n- Python (\u003e=3.8)\n- Django (\u003e=4.0)\n- SQLite database\n\n### Steps\n1. Clone the repository:\n   ```sh\n   git clone http://github.com/sameerqureshii/django-real-estate/.git\n   cd real_estate\n   ```\n2. Create a virtual environment and activate it:\n   ```sh\n   python -m venv venv\n   source venv/bin/activate  # On Windows use `venv\\Scripts\\activate`\n   ```\n3. Install dependencies:\n   ```sh\n   pip install -r requirements.txt\n   ```\n4. Configure database settings in `settings.py`:\n   ```python\n   DATABASES = {\n       'default': {\n           'ENGINE': 'django.db.backends.sqlite3',\n           'NAME': 'real_estate',\n           'USER': 'admin@example.com',\n           'PASSWORD': 'estate123',\n           'HOST': 'localhost',\n           'PORT': '8000',\n       }\n   }\n   ```\n5. Run migrations:\n   ```sh\n   python manage.py makemigrations\n   python manage.py migrate\n   ```\n6. Create a superuser:\n   ```sh\n   python manage.py createsuperuser\n   ```\n7. Start the development server:\n   ```sh\n   python manage.py runserver\n   ```\n8. Access the application at `http://127.0.0.1:8000/`\n\n## Usage\n- Navigate to the admin panel (`/admin`) to manage properties.\n- Visit the `/properties/` endpoint to view all property listings.\n- Use forms to add, edit, or delete properties.\n\n## Models\nThe application includes a `Property` model with the following fields:\n- `title`: CharField\n- `description`: TextField\n- `price`: DecimalField\n- `location`: CharField\n- `image`: ImageField\n\n## API Endpoints (Optional)\n| Method | Endpoint       | Description |\n|--------|---------------|-------------|\n| GET    | /properties/  | List all properties |\n| POST   | /properties/add/ | Add a new property |\n| GET    | /properties/\u003cid\u003e/ | View property details |\n| PUT    | /properties/edit/\u003cid\u003e/ | Update property details |\n| DELETE | /properties/delete/\u003cid\u003e/ | Delete property |\n\n## Contributing\nFeel free to fork this repository, submit issues, and contribute improvements.\n\n## License\nThis project is open-source and available under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsameerqureshii%2Fdjango-real-estate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsameerqureshii%2Fdjango-real-estate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsameerqureshii%2Fdjango-real-estate/lists"}