{"id":23150725,"url":"https://github.com/xonoxc/globo","last_synced_at":"2026-04-11T12:03:03.791Z","repository":{"id":227055132,"uuid":"766810671","full_name":"xonoxc/Globo","owner":"xonoxc","description":"A blog application for creating , sharing and writing blogs","archived":false,"fork":false,"pushed_at":"2024-11-09T12:40:21.000Z","size":953,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"dedicated_backend","last_synced_at":"2025-04-04T14:44:49.817Z","etag":null,"topics":["eslint","git","reactjs","redux","tailwindcss","typescript"],"latest_commit_sha":null,"homepage":"https://globo-ecru.vercel.app","language":"TypeScript","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/xonoxc.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-03-04T07:03:08.000Z","updated_at":"2024-12-01T06:26:06.000Z","dependencies_parsed_at":"2024-03-31T12:21:18.142Z","dependency_job_id":"9d974388-1bbc-4583-a5a3-97573644b35c","html_url":"https://github.com/xonoxc/Globo","commit_stats":null,"previous_names":["darkxxdevs/globo","xonoxc/globo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/xonoxc/Globo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xonoxc%2FGlobo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xonoxc%2FGlobo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xonoxc%2FGlobo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xonoxc%2FGlobo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xonoxc","download_url":"https://codeload.github.com/xonoxc/Globo/tar.gz/refs/heads/dedicated_backend","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xonoxc%2FGlobo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279019160,"owners_count":26086685,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"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":["eslint","git","reactjs","redux","tailwindcss","typescript"],"created_at":"2024-12-17T18:18:19.587Z","updated_at":"2025-10-14T14:43:46.139Z","avatar_url":"https://github.com/xonoxc.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Globo Blog\n\nGlobo Blog is a modern blogging platform built with Vite and React. This application allows users to create, edit, view, and manage blog posts with an intuitive, high-performance UI.\n\n## Table of Contents\n\n- [Features](#features)\n- [Tech Stack](#tech-stack)\n- [Getting Started](#getting-started)\n- [Project Structure](#project-structure)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Features\n\n- Create, edit, and delete blog posts\n- Rich text editor support\n- Responsive and optimized for performance\n- User authentication and authorization\n- SEO-friendly\n- Dynamic routing for blog posts\n- Commenting functionality with replies\n- State management using Zustand\n\n## Tech Stack\n\n- **Frontend:** React, Vite, Redux for state management\n- **Styling:** CSS Modules / Styled Components (optional)\n- **Backend :** Node.js  + Typescript \n- **Authentication:** : Custom JWT authentication\n- **Caching** : Redis\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js (\u003e= 14.x.x) and npm (\u003e= 6.x.x) or yarn (\u003e= 1.22.x)\n\n### Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/xonoxc/Globo.git\n   cd Globo\n   ```\n\n\n2. Install dependencies:\n\n\t```bash\n\t    npm install\n        # or\n        yarn install\n\t```\n\n\n3. Create a .env file and add environment variables as stated in .env.sample file\n\n### Running the application\n\n1.  To start the development server:\n\n\t```bash\n\t\tnpm install\n\t\t#or\n\t\tyarn install\n\t```\n\n\nOpen [http://localhost:5173](http://localhost:5173) to view the app in the browser\n\n## Production Build\n\n1. To build the project for production, run:\n\n\t```bash \n       npm run build\n       # or\n       yarn build\n    ```\n\n\n## Project Structure\n\n  \u003e [!NOTE]\n  \u003e this is general overview of the project structure files may change as development progresses\n\n\t```bash\n\n\t\t├── public          # Static assets\n\t\t├── src\n\t\t│   ├── assets      # Image and other assets\n\t\t│   ├── components  # Reusable components\n\t\t│   ├── pages       # Page components (Home, Blog, etc.)\n\t\t│   ├── hooks       # Custom hooks\n\t\t│   ├── store       # Redux store\n\t\t│   ├── utils       # Utility functions\n\t\t│   └── App.jsx     # Main App component\n\t\t├── .env            # Environment variables\n\t\t└── vite.config.js  # Vite configuration\n    ```\n\n## Api repository\n\nSee [backend](https://github.com/xonoxc/Globo_backend.git) for the backend and api portion\n\n\n# Contributing\n\nContributions are welcomed! Please submit a pull request or open an issue for feature requests and bug fixes.\n\n\n# License\n\nThis project is licensed under the MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxonoxc%2Fglobo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxonoxc%2Fglobo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxonoxc%2Fglobo/lists"}