{"id":28432196,"url":"https://github.com/aiogram/site","last_synced_at":"2026-02-15T00:32:35.156Z","repository":{"id":281396020,"uuid":"945147964","full_name":"aiogram/site","owner":"aiogram","description":"Landing and Blog site","archived":false,"fork":false,"pushed_at":"2025-03-30T01:01:44.000Z","size":197,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-10-23T12:35:48.733Z","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/aiogram.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}},"created_at":"2025-03-08T19:09:44.000Z","updated_at":"2025-03-30T01:01:48.000Z","dependencies_parsed_at":"2025-04-03T16:21:09.077Z","dependency_job_id":"e12cd685-4ad9-40b0-97f0-4983ced5be34","html_url":"https://github.com/aiogram/site","commit_stats":null,"previous_names":["aiogram/site"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aiogram/site","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aiogram%2Fsite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aiogram%2Fsite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aiogram%2Fsite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aiogram%2Fsite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aiogram","download_url":"https://codeload.github.com/aiogram/site/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aiogram%2Fsite/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29461911,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T22:42:09.113Z","status":"ssl_error","status_checked_at":"2026-02-14T22:42:05.053Z","response_time":53,"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":[],"created_at":"2025-06-05T16:36:02.776Z","updated_at":"2026-02-15T00:32:35.141Z","avatar_url":"https://github.com/aiogram.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# aiogram Website\n\nThis repository contains the source code for the [aiogram](https://github.com/aiogram/aiogram) framework's official website.\n\n## About aiogram\n\naiogram is a modern and fully asynchronous framework for Telegram Bot API written in Python using asyncio and aiohttp. It's designed to be easy to use and focuses on modern Python features.\n\n## Important Links\n\n- **Documentation**: [docs.aiogram.dev](https://docs.aiogram.dev)\n- **Blog/Updates**: [Telegram Channel @aiogram_live](https://telegram.me/s/aiogram_live)\n- **GitHub Repository**: [github.com/aiogram/aiogram](https://github.com/aiogram/aiogram)\n- **Community Chat**: [t.me/aiogram](https://t.me/aiogram)\n\n## External Resources\n\nThe aiogram website integrates with several external resources:\n\n- The **Documentation** is hosted separately at [docs.aiogram.dev](https://docs.aiogram.dev)\n- The **Blog** content is provided via the Telegram channel [@aiogram_live](https://telegram.me/s/aiogram_live) rather than being part of the Jekyll site\n- The site also links to the GitHub repository and other community resources\n\n## Development\n\nThis website is built using [Jekyll](https://jekyllrb.com/), a static site generator.\n\n### Running with Docker\n\nThe easiest way to run this site locally is using Docker:\n\n1. Clone this repository:\n   ```\n   git clone https://github.com/aiogram/site.git\n   cd site\n   ```\n\n2. Build and run using Docker Compose:\n   ```\n   docker-compose up\n   ```\n\n3. Visit `http://localhost:4000` in your browser to see the site.\n\n### Running without Docker\n\nIf you prefer to run the site without Docker:\n\n1. Install Ruby and Bundler\n2. Clone this repository\n3. Install dependencies:\n   ```\n   bundle install\n   ```\n4. Run the development server:\n   ```\n   bundle exec jekyll serve --livereload\n   ```\n5. Visit `http://localhost:4000` in your browser\n\n### Alternative with Rake\n\nYou can also use Rake tasks for common operations:\n\n```bash\n# Serve locally\nrake serve\n\n# Build for production\nrake build\n\n# Serve with production environment\nrake serve_prod\n\n# Clean build artifacts\nrake clean\n```\n\n## GitHub Pages Deployment\n\nThis site is configured to deploy automatically to GitHub Pages using GitHub Actions. Here's how it works:\n\n1. When you push to the `main` branch, GitHub Actions will build and deploy the site\n2. The workflow is defined in `.github/workflows/github-pages.yml`\n3. The site is deployed to [aiogram.dev](https://aiogram.dev)\n\n### Manual Deployment\n\nIf you need to deploy manually:\n\n1. Build the site:\n   ```\n   JEKYLL_ENV=production bundle exec jekyll build\n   ```\n\n2. The built site will be in the `_site` directory\n\n## Troubleshooting\n\n### Missing theme error\n\nIf you get an error like `The minima theme could not be found`, make sure you have the minima gem installed in your Gemfile:\n\n```ruby\ngem \"minima\", \"~\u003e 2.5.1\"\n```\n\nThen run `bundle install` before starting the server.\n\n## Contributing\n\nContributions to improve the website are welcome! Please follow these steps:\n\n1. Fork the repository\n2. Create your feature branch\n3. Make your changes\n4. Submit a pull request\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details. \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faiogram%2Fsite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faiogram%2Fsite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faiogram%2Fsite/lists"}