{"id":40381426,"url":"https://github.com/fshangala/chipanda","last_synced_at":"2026-01-20T12:03:04.031Z","repository":{"id":328288249,"uuid":"1111647410","full_name":"fshangala/chipanda","owner":"fshangala","description":"Web platform for searching for houses for rend or for sale","archived":false,"fork":false,"pushed_at":"2025-12-28T05:25:07.000Z","size":1924,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-30T09:53:34.177Z","etag":null,"topics":["house","listing","rent","sales"],"latest_commit_sha":null,"homepage":"","language":"CSS","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/fshangala.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-07T11:22:55.000Z","updated_at":"2025-12-28T05:25:10.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/fshangala/chipanda","commit_stats":null,"previous_names":["fshangala/chipanda"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fshangala/chipanda","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fshangala%2Fchipanda","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fshangala%2Fchipanda/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fshangala%2Fchipanda/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fshangala%2Fchipanda/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fshangala","download_url":"https://codeload.github.com/fshangala/chipanda/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fshangala%2Fchipanda/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28603307,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T12:01:53.233Z","status":"ssl_error","status_checked_at":"2026-01-20T12:01:46.545Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["house","listing","rent","sales"],"created_at":"2026-01-20T12:03:03.978Z","updated_at":"2026-01-20T12:03:04.026Z","avatar_url":"https://github.com/fshangala.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Chipanda Real Estate Platform\n\n`chipanda` is a web application built with the Django framework to serve as a real estate platform. It allows agents to list properties for rent or sale, and public users to browse and view these listings.\n\n## Features\n\n*   **Property Listings:** Agents can create and manage property listings through the Django admin.\n*   **Multiple Images:** Each property can have multiple images.\n*   **Agent Authentication:** A dedicated registration page allows new agents to create staff accounts.\n*   **Public Views:** Anyone can view the list of properties and their details without an account.\n*   **Styled with Tailwind CSS:** The frontend is styled using Tailwind CSS for a modern look and feel.\n\n## Technology Stack\n\n*   **Backend:** Django\n*   **Database:** SQLite (for development)\n*   **Frontend:** Tailwind CSS\n*   **Environment Variables:** `django-environ`\n\n## Project Structure\n\n```\nchipanda/\n├── .env\n├── .env-example\n├── accounts/       # User registration and authentication\n├── chipanda/       # Project configuration \u0026 global templates\n├── listings/       # Core app for property listings\n├── media/          # User-uploaded files (e.g., property photos)\n├── static/         # Compiled CSS\n├── manage.py\n└── requirements.txt\n```\n\n## Getting Started\n\nFollow these steps to set up and run the project locally.\n\n### 1. Prerequisites\n\n*   Python 3.x\n*   Node.js and npm (for Tailwind CSS)\n\n### 2. Installation\n\n1.  **Clone the repository:**\n    ```bash\n    git clone \u003crepository-url\u003e\n    cd chipanda\n    ```\n\n2.  **Set up a Python virtual environment:**\n    ```bash\n    python -m venv venv\n    source venv/bin/activate  # On Windows, use `venv\\Scripts\\activate`\n    ```\n\n3.  **Install Python and Node.js dependencies:**\n    ```bash\n    pip install -r requirements.txt\n    npm install\n    ```\n\n4.  **Configure environment variables:**\n    ```bash\n    cp .env-example .env\n    ```\n    *Open the `.env` file and generate a new `SECRET_KEY`.*\n\n5.  **Apply database migrations:**\n    ```bash\n    python manage.py migrate\n    ```\n\n### 3. Running the Project\n\nYou need to run two processes simultaneously: the Django development server and the Tailwind CSS watcher.\n\n1.  **Run the Tailwind CSS watcher:**\n    ```bash\n    npm run watch\n    ```\n\n2.  **In a separate terminal, run the Django server:**\n    ```bash\n    python manage.py runserver\n    ```\n\nThe application will be available at `http://127.0.0.1:8000/`.\n\n*   **Property Listings:** http://127.0.0.1:8000/listings/\n*   **Agent Registration:** http://127.0.0.1:8000/accounts/register/\n*   **Admin Login:** http://127.0.0.1:8000/admin/","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffshangala%2Fchipanda","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffshangala%2Fchipanda","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffshangala%2Fchipanda/lists"}