{"id":15187194,"url":"https://github.com/bongomin/danverse-api","last_synced_at":"2026-02-12T16:02:13.193Z","repository":{"id":206047783,"uuid":"715650453","full_name":"bongomin/DanVerse-API","owner":"bongomin","description":"DanVerse-API is a Django Rest Framework API that supports user roles, content creation, commenting, and features like liking and loving posts. It's a dynamic platform for content creators and readers to engage and connect through blogs and discussions","archived":false,"fork":false,"pushed_at":"2023-11-08T13:56:32.000Z","size":5379,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-27T16:50:50.769Z","etag":null,"topics":["authentication","crud-api","database","devops","psql","restfull-api"],"latest_commit_sha":null,"homepage":"https://danverse-api-production.up.railway.app/admin/login/?next=/admin/","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/bongomin.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":"2023-11-07T15:03:46.000Z","updated_at":"2023-11-08T13:47:44.000Z","dependencies_parsed_at":"2023-11-07T17:58:51.540Z","dependency_job_id":"56eceb0d-910c-488d-9f96-f238b8e189b9","html_url":"https://github.com/bongomin/DanVerse-API","commit_stats":{"total_commits":43,"total_committers":2,"mean_commits":21.5,"dds":"0.16279069767441856","last_synced_commit":"7850074290b56cb83acf6999110af34825256481"},"previous_names":["bongomin/danverse-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bongomin/DanVerse-API","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bongomin%2FDanVerse-API","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bongomin%2FDanVerse-API/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bongomin%2FDanVerse-API/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bongomin%2FDanVerse-API/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bongomin","download_url":"https://codeload.github.com/bongomin/DanVerse-API/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bongomin%2FDanVerse-API/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29371404,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T08:51:36.827Z","status":"ssl_error","status_checked_at":"2026-02-12T08:51:26.849Z","response_time":55,"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":["authentication","crud-api","database","devops","psql","restfull-api"],"created_at":"2024-09-27T18:03:46.142Z","updated_at":"2026-02-12T16:02:13.178Z","avatar_url":"https://github.com/bongomin.png","language":"Python","readme":"```markdown\n# DanVerse API\nDanVerse API is a Django RESTful API I designed to manage blog posts, comments, user profiles, tags, likes, and loves. It serves as the backend for your blogging platform.\n\n## Features\n\n- **Blog Posts:** Create, read, update, and delete blog posts.\n- **Comments:** Allow users to comment on blog posts.\n- **User Profiles:** Manage user profiles with additional information.\n- **Tags:** Categorize blog posts using tags.\n- **Likes and Loves:** Add likes and loves to blog posts.\n\n## API Endpoints\n\nThe API provides the following endpoints:\n\n- **Blog Posts:**\n  - `GET /api/v1/blogs/`: Get a list of all blog posts.\n  - `GET /api/v1/blogs/{blog_id}/`: Get details of a specific blog post.\n  - `POST /api/v1/blogs/`: Create a new blog post.\n  - `PUT /api/v1/blogs/{blog_id}/`: Update an existing blog post.\n  - `DELETE /api/v1/blogs/{blog_id}/`: Delete a blog post.\n\n- **Comments:**\n  - `GET /api/v1/comments/`: Get a list of all comments.\n  - `GET /api/v1/comments/{comment_id}/`: Get details of a specific comment.\n  - `POST /api/v1/comments/`: Add a new comment.\n  - `PUT /api/v1/comments/{comment_id}/`: Update an existing comment.\n  - `DELETE /api/v1/comments/{comment_id}/`: Delete a comment.\n\n- **User Profiles:**\n  - `GET /api/v1/users/`: Get a list of all user profiles.\n  - `GET /api/v1/users/{user_id}/`: Get details of a specific user profile.\n  - `POST /api/v1/users/`: Create a new user profile.\n  - `PUT /api/v1/users/{user_id}/`: Update an existing user profile.\n  - `DELETE /api/v1/users/{user_id}/`: Delete a user profile.\n\n- **Tags:**\n  - `GET /api/v1/tags/`: Get a list of all tags.\n  - `GET /api/v1/tags/{tag_id}/`: Get details of a specific tag.\n  - `POST /api/v1/tags/`: Create a new tag.\n  - `PUT /api/v1/tags/{tag_id}/`: Update an existing tag.\n  - `DELETE /api/v1/tags/{tag_id}/`: Delete a tag.\n\n- **Likes and Loves:**\n  - `POST /api/v1/posts/{post_id}/like/`: Add a like to a blog post.\n  - `POST /api/v1/posts/{post_id}/love/`: Add a love to a blog post.\n  - `DELETE /api/v1/posts/{post_id}/like/`: Remove a like from a blog post.\n  - `DELETE /api/v1/posts/{post_id}/love/`: Remove a love from a blog post.\n\n## Getting Started\n\n1. Clone the repository:\n\n   ```bash\n   git clone git@github.com:bongomin/DanVerse-API.git\n   cd danverse-api\n   ```\n\n2. Install dependencies:\n\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n3. Configure environment variables:\n\n   Create a `.env` file in the project root and add the necessary environment variables.\n\n   ```env\n   DEBUG=True\n   SECRET_KEY=your_secret_key\n   DATABASE_URL=your_database_url\n   ```\n\n4. Run migrations:\n\n   ```bash\n   python manage.py migrate\n   ```\n\n5. Start the development server:\n\n   ```bash\n   python manage.py runserver\n   ```\n\n## Deployment\n\u003cimg width=\"1437\" alt=\"restful\" src=\"https://github.com/bongomin/DanVerse-API/assets/39218838/35039138-3cfb-42f5-9c41-62e2f7fd47ec\"\u003e\n\n\u003cimg width=\"1432\" alt=\"Screenshot 2023-11-08 at 4 53 58 PM\" src=\"https://github.com/bongomin/DanVerse-API/assets/39218838/6ce58994-10c6-4c37-b41c-d6ca72b684ab\"\u003e\n\n\u003cimg width=\"1437\" alt=\"Screenshot 2023-11-08 at 4 53 46 PM\" src=\"https://github.com/bongomin/DanVerse-API/assets/39218838/83626c2d-54b1-4344-86d3-d7baa44f954d\"\u003e\n\nThe API is deployed on [Railway](https://danverse-api-production.up.railway.app/). Ensure your production environment variables are correctly configured.\n\n## Contributing\n\nIf you would like to contribute to this project, please follow the [Contributing Guidelines](CONTRIBUTING.md).\n\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbongomin%2Fdanverse-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbongomin%2Fdanverse-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbongomin%2Fdanverse-api/lists"}