{"id":26264343,"url":"https://github.com/itz-snj/cabify","last_synced_at":"2026-03-08T13:36:58.081Z","repository":{"id":281197795,"uuid":"944512250","full_name":"Itz-snj/Cabify","owner":"Itz-snj","description":"CABIFY is a comprehensive full-stack cab booking platform that connects riders with drivers in real-time. Built with modern web technologies, it offers a seamless experience for both users and drivers through an intuitive interface and robust backend architecture.","archived":false,"fork":false,"pushed_at":"2025-04-13T19:27:01.000Z","size":4640,"stargazers_count":3,"open_issues_count":1,"forks_count":13,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-30T14:28:11.577Z","etag":null,"topics":["apertre25","express","expressjs","javascript","microservices","open-source","react","reactjs","socket-io","tailwindcss","webapp","website"],"latest_commit_sha":null,"homepage":"https://cabify-ten.vercel.app","language":"JavaScript","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/Itz-snj.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-07T13:29:46.000Z","updated_at":"2025-04-13T19:27:06.000Z","dependencies_parsed_at":"2025-03-07T14:36:35.618Z","dependency_job_id":"d4f3ad5a-f9f4-4263-89df-ec077abb0db7","html_url":"https://github.com/Itz-snj/Cabify","commit_stats":null,"previous_names":["itz-snj/fullstack1","itz-snj/cabify"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Itz-snj%2FCabify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Itz-snj%2FCabify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Itz-snj%2FCabify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Itz-snj%2FCabify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Itz-snj","download_url":"https://codeload.github.com/Itz-snj/Cabify/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251721166,"owners_count":21632775,"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","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":["apertre25","express","expressjs","javascript","microservices","open-source","react","reactjs","socket-io","tailwindcss","webapp","website"],"created_at":"2025-03-14T02:14:46.355Z","updated_at":"2026-03-08T13:36:58.023Z","avatar_url":"https://github.com/Itz-snj.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hey, Welcome to Apertre 2.0! 👋\n\nIt is an open source event, make sure to follow the issue tags before commiting and also make sure to join the discord server.\nhttps://discord.gg/A9QpVUazNC \n\n# FullStack Project - Cab Booking System \n\nThis is a full-stack project for a cab booking system. It includes both the frontend and backend components.\n\n# Mentor\n## Vedansh Jain\n- Linkedin: [link](https://www.linkedin.com/in/vedanshcode/)\n- Role: Project Mentor\n- Contact: For any queries related to the project, feel free to reach out on Discord or create an issue on GitHub.\n\n## Installation\n\n1. Clone the repository:\n    ```bash\n    git clone https://github.com/Itz-snj/Fullstack1.git\n    cd Fullstack1/backend\n    ```\n\n2. Install dependencies:\n    ```bash\n    npm install\n    ```\n\n3. Create a `.env` file in the [backend](http://_vscodecontentref_/0) directory and add:\n    ```properties\n    PORT=4000\n    MONGO_URI=your_mongodb_connection_string\n    JWT_SECRET=your_jwt_secret\n    ```\n\n4. Start the server:\n    ```bash\n    npm start\n    ```\n\n## API Endpoints\n\n### User Registration\n- **URL:** `/user/register`\n- **Method:** `POST`\n- **Body:**\n    ```json\n    {\n        \"name\": {\n            \"firstname\": \"John\",\n            \"middlename\": \"Doe\",\n            \"lastname\": \"Smith\"\n        },\n        \"email\": \"john.doe@example.com\",\n        \"password\": \"yourpassword\"\n    }\n    ```\n\n### User Login\n- **URL:** `/user/login`\n- **Method:** `POST`\n- **Body:**\n    ```json\n    {\n        \"email\": \"john.doe@example.com\",\n        \"password\": \"yourpassword\"\n    }\n    ```\n\n## Environment Variables\n\n- `PORT`: Server port.\n- `MONGO_URI`: MongoDB connection string.\n- `JWT_SECRET`: JWT secret key.\n\n## Project Structure\n\n```\nFullStack1/\n├── backend/\n│   ├── controllers/\n│   │   ├── user.controller.js\n│   │   └── captain.controller.js\n│   ├── db/\n│   │   └── db.js\n│   ├── middlewares/\n│   │   └── auth.middleware.js\n│   ├── models/\n│   │   ├── user.model.js\n│   │   ├── captain.model.js\n│   │   └── blacklist.token.model.js\n│   ├── routes/\n│   │   ├── user.routes.js\n│   │   └── captain.routes.js\n│   ├── services/\n│   │   └── user.service.js\n│   ├── .env\n│   ├── app.js\n│   ├── server.js\n│   └── package.json\n│\n├── frontend/\n│   ├── public/\n│   │   └── index.html\n│   ├── src/\n│   │   ├── api/\n│   │   │   └── api.js\n│   │   ├── components/\n│   │   │   ├── signup.jsx\n│   │   │   └── ui/\n│   │   │       ├── input.jsx\n│   │   │       └── label.jsx\n│   │   ├── lib/\n│   │   │   └── utils.js\n│   │   ├── pages/\n│   │   │   └── UserSignUp.jsx\n│   │   ├── App.jsx\n│   │   └── main.jsx\n│   ├── .env\n│   ├── index.html\n│   ├── package.json\n│   ├── tailwind.config.js\n│   └── vite.config.js\n│\n└── README.md\n```\n\n\nAdded a shell script to append files in github and stage it from local to remote git repository","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitz-snj%2Fcabify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitz-snj%2Fcabify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitz-snj%2Fcabify/lists"}