{"id":23974975,"url":"https://github.com/saeidsaadatigero/django-blog","last_synced_at":"2026-05-07T16:40:22.469Z","repository":{"id":218212936,"uuid":"745885176","full_name":"saeidsaadatigero/Django-Blog","owner":"saeidsaadatigero","description":"Django Blog Project","archived":false,"fork":false,"pushed_at":"2025-01-04T23:02:38.000Z","size":20838,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-19T01:48:20.769Z","etag":null,"topics":["blog","crispy-forms","django"],"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/saeidsaadatigero.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":"2024-01-20T12:51:35.000Z","updated_at":"2025-01-04T23:02:42.000Z","dependencies_parsed_at":"2024-11-12T20:32:57.428Z","dependency_job_id":"e0199191-a108-4485-9aca-3aaf534589be","html_url":"https://github.com/saeidsaadatigero/Django-Blog","commit_stats":null,"previous_names":["saeidsaadatigero/django-blog","saeidsaadatigero/blog"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/saeidsaadatigero/Django-Blog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saeidsaadatigero%2FDjango-Blog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saeidsaadatigero%2FDjango-Blog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saeidsaadatigero%2FDjango-Blog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saeidsaadatigero%2FDjango-Blog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/saeidsaadatigero","download_url":"https://codeload.github.com/saeidsaadatigero/Django-Blog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saeidsaadatigero%2FDjango-Blog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32746429,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-07T02:14:30.463Z","status":"ssl_error","status_checked_at":"2026-05-07T02:14:29.405Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["blog","crispy-forms","django"],"created_at":"2025-01-07T05:56:05.563Z","updated_at":"2026-05-07T16:40:22.454Z","avatar_url":"https://github.com/saeidsaadatigero.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Django Blog Project\n![Screenshot from 2024-11-14 00-25-06](https://github.com/user-attachments/assets/6d0c182e-8a49-4c34-bc84-66162b93a788)\n\nThis is a simple blog application built with Django. It allows users to create, read, update, and delete blog posts, as well as comment on them. The application uses Bootstrap for styling and crispy forms for better form handling.\n\n## Features\n\n- User authentication (login, logout, signup)\n- Create, update, delete, and view blog posts\n- Comment on blog posts\n- Pagination for blog posts\n- Search functionality for posts\n- Caching for improved performance\n\n## Requirements\n\n- Python 3.x\n- Django 5.0.1\n- Other dependencies listed in `requirements.txt`\n\n## Installation\n\n1. **Clone the repository:**\n   ```bash\n   git clone https://github.com/saeidsaadatigero/django-blog.git\n   cd django-blog\n   ```\n\n2. **Create a virtual environment:**\n   ```bash\n   python -m venv venv\n   source venv/bin/activate  # On Windows use `venv\\Scripts\\activate`\n   ```\n\n3. **Install dependencies:**\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n4. **Apply migrations:**\n   ```bash\n   python manage.py migrate\n   ```\n\n5. **Create a superuser (optional, for admin access):**\n   ```bash\n   python manage.py createsuperuser\n   ```\n\n6. **Run the development server:**\n   ```bash\n   python manage.py runserver\n   ```\n\n7. **Access the application:**\n   Open your web browser and go to `http://127.0.0.1:8000/`.\n\n## Usage\n\n- Navigate to the home page to view the list of blog posts.\n- Click on a post title to view its details and comments.\n- Use the \"Add new post\" link to create a new blog post (requires login).\n- Users can log in, log out, and sign up for an account.\n\n## Directory Structure\n\n```\ndjango-blog/\n│\n├── config/               # Django project settings\n├── blog/                 # Blog app containing models, views, and templates\n├── accounts/             # User authentication app\n├── media/                # Uploaded media files\n├── static/               # Static files (CSS, JS, images)\n├── templates/            # HTML templates\n├── manage.py             # Django management script\n└── requirements.txt      # Python dependencies\n```\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n## Acknowledgements\n\n- [Django](https://www.djangoproject.com/)\n- [Bootstrap](https://getbootstrap.com/)\n- [Crispy Forms](https://django-crispy-forms.readthedocs.io/en/latest/)\n```\n\nFeel free to modify any sections to better fit your project's specifics!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaeidsaadatigero%2Fdjango-blog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsaeidsaadatigero%2Fdjango-blog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaeidsaadatigero%2Fdjango-blog/lists"}