{"id":24493597,"url":"https://github.com/bigprogrammers/django-blog-app","last_synced_at":"2026-02-26T18:38:22.201Z","repository":{"id":271755251,"uuid":"914468154","full_name":"bigprogrammers/django-blog-app","owner":"bigprogrammers","description":null,"archived":false,"fork":false,"pushed_at":"2025-01-09T18:23:49.000Z","size":895,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-06T11:03:32.848Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/bigprogrammers.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-01-09T16:50:42.000Z","updated_at":"2025-02-27T10:14:00.000Z","dependencies_parsed_at":"2025-01-09T17:53:31.048Z","dependency_job_id":"b8a3f815-2d84-475c-abac-8777c7ff7117","html_url":"https://github.com/bigprogrammers/django-blog-app","commit_stats":null,"previous_names":["bigprogrammers/django-blog-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bigprogrammers/django-blog-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigprogrammers%2Fdjango-blog-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigprogrammers%2Fdjango-blog-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigprogrammers%2Fdjango-blog-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigprogrammers%2Fdjango-blog-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bigprogrammers","download_url":"https://codeload.github.com/bigprogrammers/django-blog-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigprogrammers%2Fdjango-blog-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29867571,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T18:27:06.972Z","status":"ssl_error","status_checked_at":"2026-02-26T18:26:57.848Z","response_time":89,"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":[],"created_at":"2025-01-21T19:42:17.899Z","updated_at":"2026-02-26T18:38:22.070Z","avatar_url":"https://github.com/bigprogrammers.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Home Page](Homepage.png)\n\n\n# Django Blog Website\n\nWelcome to the **Django Blog Website** repository! This project is a simple yet feature-rich blog platform built using Django, a powerful Python web framework. It allows users to create, read, update, and delete blog posts, manage user authentication, and interact with an intuitive user interface.\n\n## Features\n\n- **User Authentication:**\n  - Registration, Login, Logout\n  - Password reset functionality\n\n- **Blog Posts Management:**\n  - Create, Read, Update, and Delete (CRUD) operations\n  - List and detail views for blog posts\n\n- **Rich Text Editing:**\n  - Enhanced post creation with a WYSIWYG editor\n\n- **Responsive Design:**\n  - Fully functional on desktops, tablets, and mobile devices\n\n- **Commenting System (Optional):**\n  - Allow users to comment on blog posts\n\n## Requirements\n\n- Python 3.8+\n- Django 4.0+\n- PostgreSQL (optional, can use SQLite for development)\n- Virtualenv or pipenv (recommended for dependency management)\n\n## Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/your-username/django-blog.git\n   cd django-blog\n   ```\n\n2. Create and activate a virtual environment:\n\n   ```bash\n   python -m venv env\n   source env/bin/activate   # On Windows use `env\\Scripts\\activate`\n   ```\n\n3. Install dependencies:\n\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n4. Set up the database:\n\n   - For SQLite (default):\n     ```bash\n     python manage.py migrate\n     ```\n\n   - For PostgreSQL (optional):\n     Configure the database settings in `settings.py`, then:\n     ```bash\n     python manage.py migrate\n     ```\n\n5. Create a superuser:\n\n   ```bash\n   python manage.py createsuperuser\n   ```\n\n6. Run the development server:\n\n   ```bash\n   python manage.py runserver\n   ```\n\n   Visit `http://127.0.0.1:8000/` in your browser.\n\n## Configuration\n\n### Environment Variables\n\nCreate a `.env` file in the project root to configure sensitive settings:\n\n```env\nSECRET_KEY=your-secret-key\nDEBUG=True\nDATABASE_URL=your-database-url\n```\n\n### Static Files\n\nCollect static files for production use:\n\n```bash\npython manage.py collectstatic\n```\n\n## Usage\n\n1. Navigate to the homepage to view the list of blog posts.\n2. Log in to create, edit, or delete posts (admin or authenticated users).\n3. Explore the admin panel at `/admin` to manage the website.\n\n## Screenshots\n### HomePage\n![Home Page](Homepage.png)\n### Login\n![Home Page](login.png)\n### Registration\n![Registration.png](Registration.png)\n### Single Post Page\n![Single Post Page.png](Single-Post-Page.png)\n### Create New Post Page\n![Home Page](Create-New-Post-Page.png)\n### Admin Panel Page\n![Admin Panel Page](Admin-Panel-Page.png)\n## Contributing\n\nContributions are welcome! Please follow these steps:\n\n1. Fork the repository.\n2. Create a new branch (`git checkout -b feature-name`).\n3. Commit your changes (`git commit -m 'Add a new feature'`).\n4. Push to the branch (`git push origin feature-name`).\n5. Create a pull request.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- Django Documentation: \u003chttps://docs.djangoproject.com/\u003e\n- Tailwindcss: \u003chttps://tailwindcss.com/\u003e\n- Any additional libraries or inspirations you used for the project.\n\n---\nFeel free to suggest improvements or report issues. Happy coding!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbigprogrammers%2Fdjango-blog-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbigprogrammers%2Fdjango-blog-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbigprogrammers%2Fdjango-blog-app/lists"}