Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shivxmr/ryde
Ryde is a full-stack ride-sharing app inspired by Uber. It features user authentication, real-time ride tracking, dynamic pricing, and an intuitive UI. Built with modern web technologies, Ryde is a scalable solution that simulates a real-world ride-hailing experience.
https://github.com/shivxmr/ryde
expo google-maps-api nativewind neondb nextjs postgresql react-native stripe tailwindcss typescript zustand
Last synced: 28 days ago
JSON representation
Ryde is a full-stack ride-sharing app inspired by Uber. It features user authentication, real-time ride tracking, dynamic pricing, and an intuitive UI. Built with modern web technologies, Ryde is a scalable solution that simulates a real-world ride-hailing experience.
- Host: GitHub
- URL: https://github.com/shivxmr/ryde
- Owner: shivxmr
- Created: 2024-08-17T21:58:44.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-09-03T17:15:49.000Z (4 months ago)
- Last Synced: 2024-10-16T22:11:07.137Z (3 months ago)
- Topics: expo, google-maps-api, nativewind, neondb, nextjs, postgresql, react-native, stripe, tailwindcss, typescript, zustand
- Language: TypeScript
- Homepage:
- Size: 3.1 MB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Full Stack Uber Clone
## π Table of Contents
1. π€ [Introduction](#introduction)
2. βοΈ [Tech Stack](#tech-stack)
3. π [Features](#features)
4. π€Έ [Quick Start](#quick-start)
5. πΈοΈ [Snippets (Code to Copy)](#snippets)
6. ποΈ [Links](#links)
7. π¦ [Assets](#assets)
8. π [More](#more)Built with React Native for handling the user interface, Google Maps for rendering maps with directions, stripe for
handling payments, serverless Postgres for managing databases, and styled with TailwindCSS, Uber Clone is a perfect
mobile app. The primary goal is to demonstrate how to develop full-stack mobile applications to showcase the developer's
skills in a unique manner that creates a lasting impact.- React Native
- Expo
- Stripe
- PostgreSQL
- Google Maps
- zustand
- Clerk
- Tailwind CSSπ **Onboarding Flow**: Seamless user registration and setup process.
π **Email Password Authentication with Verification**: Secure login with email verification.
π **oAuth Using Google**: Easy login using Google credentials.
π **Authorization**: Secure access control for different user roles.
π **Home Screen with Live Location & Google Map**: Real-time location tracking with markers on a map.
π **Recent Rides**: View a list of recent rides at a glance.
π **Google Places Autocomplete**: Search any place on Earth with autocomplete suggestions.
π **Find Rides**: Search for rides by entering 'From' and 'To' locations.
π **Select Rides from Map**: Choose available cars near your location from the map.
π **Confirm Ride with Detailed Information**: View complete ride details, including time and fare price.
π **Pay for Ride Using Stripe**: Make payments using multiple methods like cards and others.
π **Create Rides After Successful Payment**: Book a ride after confirming payment.
π **Profile**: Manage account details in the profile screen.
π **History**: Review all rides booked so far.
π **Responsive on Android and iOS**: Optimized for both Android and iOS devices.
and many more, including code architecture and reusability
Follow these steps to set up the project locally on your machine.
**Prerequisites**
Make sure you have the following installed on your machine:
- [Git](https://git-scm.com/)
- [Node.js](https://nodejs.org/en)
- [npm](https://www.npmjs.com/) (Node Package Manager)**Installation**
Install the project dependencies using npm:
```bash
npm install
```**Set Up Environment Variables**
Create a new file named `.env` in the root of your project and add the following content:
```env
EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY=EXPO_PUBLIC_PLACES_API_KEY=
EXPO_PUBLIC_DIRECTIONS_API_KEY=DATABASE_URL=
EXPO_PUBLIC_SERVER_URL=https://uber.dev/
EXPO_PUBLIC_GEOAPIFY_API_KEY=
EXPO_PUBLIC_STRIPE_PUBLISHABLE_KEY=
STRIPE_SECRET_KEY=
```Replace the placeholder values with your actual Clerk, Stripe, NeonDB, Google Maps, andgeoapify credentials. You can
obtain these credentials by signing up on
the [Clerk](https://clerk.com/), [Stripe](https://stripe.com/in), [NeonDB](https://neon.tech/), [Google Maps](https://console.cloud.google.com/)
and [geoapify](https://www.geoapify.com/) websites respectively.**Running the Project**
```bash
npx expo start
```Download the [Expo Go](https://expo.dev/go) app and Scan the QR code on your respective device to view the project.