{"id":24941886,"url":"https://github.com/davanesh/uber_clone","last_synced_at":"2025-04-15T09:35:41.247Z","repository":{"id":272168470,"uuid":"915716928","full_name":"Davanesh/Uber_Clone","owner":"Davanesh","description":"A fully functional Uber clone built with React Native for the mobile interface and Node.js for the backend. Features include user authentication, ride booking, real-time tracking, driver profiles, payment integration, and push notifications. Firebase is used for authentication and real-time database management.","archived":false,"fork":false,"pushed_at":"2025-01-12T16:18:39.000Z","size":273,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-02T18:56:53.121Z","etag":null,"topics":["android-app","chat-application","cross-platform","expressjs","google-maps-api","ios-app","mapbox","nodejs","postgresql","react-native","socket-io"],"latest_commit_sha":null,"homepage":"","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/Davanesh.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":"2025-01-12T16:11:02.000Z","updated_at":"2025-02-02T07:44:41.000Z","dependencies_parsed_at":"2025-01-12T17:26:08.190Z","dependency_job_id":"4f1d7786-be0a-40fa-a020-cf236fecffa3","html_url":"https://github.com/Davanesh/Uber_Clone","commit_stats":null,"previous_names":["davanesh/uber_clone"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Davanesh%2FUber_Clone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Davanesh%2FUber_Clone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Davanesh%2FUber_Clone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Davanesh%2FUber_Clone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Davanesh","download_url":"https://codeload.github.com/Davanesh/Uber_Clone/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246082568,"owners_count":20720824,"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":["android-app","chat-application","cross-platform","expressjs","google-maps-api","ios-app","mapbox","nodejs","postgresql","react-native","socket-io"],"created_at":"2025-02-02T18:57:06.839Z","updated_at":"2025-03-28T18:40:40.036Z","avatar_url":"https://github.com/Davanesh.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Uber Clone\n\nAn Uber Clone mobile application built with React Native, featuring PostgreSQL for database management. The app includes features such as location access, money transfers, and secure authentication.\n\n## Features\n\n- **Real-time Location Access**: Track user and driver locations in real-time.\n- **Payment Integration**: Secure money transfer functionality for rides.\n- **Authentication**: User and driver authentication with secure login.\n- **Database**: PostgreSQL for data storage and management.\n- **Platform**: Built using React Native for cross-platform compatibility (iOS and Android).\n\n## Tech Stack\n\n### Frontend\n- React Native\n- React Navigation\n\n### Backend\n- Node.js\n- Express.js\n- PostgreSQL\n\n### Additional Tools\n- Firebase (for authentication)\n- Google Maps API (for location services)\n- Stripe/PayPal (for payment integration)\n\n## Installation\n\n1. **Clone the Repository**:\n   ```bash\n   git clone https://github.com/your-username/uber-clone.git\n   cd uber-clone\n   ```\n\n2. **Install Dependencies**:\n   ```bash\n   npm install\n   ```\n\n3. **Configure Environment Variables**:\n   - Create a `.env` file in the root directory.\n   - Add the following variables:\n     ```env\n     DATABASE_URL=your_postgresql_database_url\n     FIREBASE_API_KEY=your_firebase_api_key\n     FIREBASE_AUTH_DOMAIN=your_firebase_auth_domain\n     GOOGLE_MAPS_API_KEY=your_google_maps_api_key\n     PAYMENT_GATEWAY_API_KEY=your_payment_gateway_api_key\n     ```\n\n4. **Run the Application**:\n   - Start the Metro Bundler:\n     ```bash\n     npm start\n     ```\n   - Run the app on a device or emulator:\n     ```bash\n     npm run android # For Android\n     npm run ios     # For iOS\n     ```\n\n## Database Setup\n\n1. **Install PostgreSQL**:\n   Follow the [PostgreSQL installation guide](https://www.postgresql.org/download/).\n\n2. **Create a Database**:\n   ```sql\n   CREATE DATABASE uber_clone;\n   ```\n\n3. **Run Migrations**:\n   Use an ORM like Sequelize or Knex.js to handle database migrations.\n\n## Folder Structure\n\n```\nuber-clone/\n├── src/\n│   ├── components/    # Reusable components\n│   ├── navigation/    # Navigation setup\n│   ├── screens/       # Screens for the app\n│   ├── services/      # API and utility functions\n│   ├── styles/        # Global styles\n├── assets/            # Images, icons, etc.\n├── .env               # Environment variables\n├── App.js             # Entry point\n├── package.json       # Dependencies\n├── README.md          # Project documentation\n```\n\n## Contribution\n\nContributions are welcome! Follow these steps:\n\n1. Fork the repository.\n2. Create a new branch:\n   ```bash\n   git checkout -b feature-name\n   ```\n3. Commit your changes:\n   ```bash\n   git commit -m \"Add a feature\"\n   ```\n4. Push to the branch:\n   ```bash\n   git push origin feature-name\n   ```\n5. Open a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License. See the LICENSE file for details.\n\n## Contact\n\nFor queries or collaborations, contact:\n- **Name**: Davanesh\n- **GitHub**: [your-username](https://github.com/your-username)\n- **Email**: your-email@example.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavanesh%2Fuber_clone","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdavanesh%2Fuber_clone","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavanesh%2Fuber_clone/lists"}