{"id":29600678,"url":"https://github.com/kvpmx/django-website","last_synced_at":"2026-05-07T13:13:07.372Z","repository":{"id":192283816,"uuid":"686083320","full_name":"kvpmx/django-website","owner":"kvpmx","description":"A technology blog powered by Django, styled with Tailwind CSS and Flowbite","archived":false,"fork":false,"pushed_at":"2024-10-03T16:20:31.000Z","size":53,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-14T18:56:26.524Z","etag":null,"topics":["django","django-project","flowbite","python","tailwindcss","website"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kvpmx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-09-01T17:45:06.000Z","updated_at":"2024-10-03T16:20:35.000Z","dependencies_parsed_at":"2023-10-03T12:17:53.862Z","dependency_job_id":"a8cdf58f-05f2-44b5-beeb-01a6adac3fc9","html_url":"https://github.com/kvpmx/django-website","commit_stats":null,"previous_names":["maks-kovpak/django-website","kvpmx/django-website"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kvpmx/django-website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kvpmx%2Fdjango-website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kvpmx%2Fdjango-website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kvpmx%2Fdjango-website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kvpmx%2Fdjango-website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kvpmx","download_url":"https://codeload.github.com/kvpmx/django-website/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kvpmx%2Fdjango-website/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31966218,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"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":["django","django-project","flowbite","python","tailwindcss","website"],"created_at":"2025-07-20T12:08:32.671Z","updated_at":"2026-05-07T13:13:07.354Z","avatar_url":"https://github.com/kvpmx.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DigitalDive Blog\n\nDigitalDive is a technology blog powered by Django, styled with Tailwind CSS and Flowbite. This repository contains the source code and resources for the website.\n\n## Table of Contents\n\n- [Overview](#overview)\n- [Features](#features)\n- [Getting started](#getting-started)\n- [Usage](#usage)\n- [License](#license)\n\n## Overview\n\nDigitalDive is a technology blog built with Django, a high-level Python web framework. The blog is designed to provide a platform for sharing tech-related articles and information with the community. It is styled with Tailwind CSS for a modern and responsive user interface and utilizes Flowbite for some additional UI components.\n\n## Features\n\n- User-friendly and responsive design.\n- Create, edit, and delete blog posts (admin only).\n- Markdown support for blog post content (provided by embed CKEditor).\n- Easy customization and theming with Tailwind CSS and Flowbite.\n\n## Getting Started\n\nFollow the steps below to set up the project on your local machine.\n\n### Requirements\n\nBefore you begin, ensure you have met the following requirements:\n\n- [Python](https://www.python.org/) (3.9 or higher)\n- [pip](https://pip.pypa.io/en/stable/installation/) (Python package manager)\n\n### Installation\n\n1. Clone this repository to your local machine:\n\n   ```shell\n   git clone https://github.com/maks-kovpak/django-website.git\n   ```\n\n2. Change into the project directory:\n\n   ```shell\n   cd django-website\n   ```\n\n3. Create a virtual environment using `virtualenv`:\n\n   ```shell\n   virtualenv .venv\n   ```\n\n4. Activate the virtual environment:\n\n   On Windows:\n\n   ```shell\n   .venv\\Scripts\\activate\n   ```\n\n   On MacOS and Linux:\n\n   ```shell\n   source .venv/bin/activate\n   ```\n\n5. Set needed environment variables from `.env.example`\n\n6. Install the project dependencies:\n\n   ```shell\n   pip install -r requirements.txt\n   ```\n\n7. Migrate the database:\n\n   ```shell\n   python manage.py migrate\n   ```\n\n8. Start the development server:\n\n   ```shell\n   python manage.py runserver\n   ```\n\n9. Open your web browser and visit [http://localhost:8000](http://localhost:8000) to access the Django website.\n\n## Usage\n\n- Create a superuser to access the admin panel:\n\n  ```bash\n  python manage.py createsuperuser\n  ```\n\n- Access the admin panel at `http://localhost:8000/admin` to manage blog posts and user accounts.\n\n- Create, edit, and delete blog posts through the web interface.\n\n- Customize the appearance of the website by modifying the Tailwind CSS and Flowbite styles if you want.\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE). Feel free to use and modify it for your own projects.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkvpmx%2Fdjango-website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkvpmx%2Fdjango-website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkvpmx%2Fdjango-website/lists"}