337 lines
14 KiB
Markdown
337 lines
14 KiB
Markdown
<a name="readme-top"></a>
|
||
|
||
# Ryde - A Full Stack Uber clone using React Native and Expo
|
||
|
||

|
||
|
||
[](https://github.com/sanidhyy "Ask Me Anything!")
|
||
[](https://github.com/sanidhyy/uber-clone/blob/main/LICENSE "GitHub license")
|
||
[](https://github.com/sanidhyy/uber-clone/commits/main "Maintenance")
|
||
[](https://github.com/sanidhyy/uber-clone/branches "GitHub branches")
|
||
[](https://github.com/sanidhyy/uber-clone/commits "Github commits")
|
||
[](https://github.com/sanidhyy/uber-clone/issues "GitHub issues")
|
||
[](https://github.com/sanidhyy/uber-clone/pulls "GitHub pull requests")
|
||
|
||
<!-- Table of Contents -->
|
||
<details>
|
||
|
||
<summary>
|
||
|
||
# :notebook_with_decorative_cover: Table of Contents
|
||
|
||
</summary>
|
||
|
||
- [Folder Structure](#bangbang-folder-structure)
|
||
- [Getting Started](#toolbox-getting-started)
|
||
- [Screenshots](#camera-screenshots)
|
||
- [Tech Stack](#gear-tech-stack)
|
||
- [Contribute](#raised_hands-contribute)
|
||
- [Acknowledgements](#gem-acknowledgements)
|
||
- [Buy Me a Coffee](#coffee-buy-me-a-coffee)
|
||
- [Follow Me](#rocket-follow-me)
|
||
- [Give A Star](#star-give-a-star)
|
||
- [Star History](#star2-star-history)
|
||
- [Give A Star](#star-give-a-star)
|
||
|
||
</details>
|
||
|
||
## :bangbang: Folder Structure
|
||
|
||
Here is the folder structure of Ryde.
|
||
|
||
<!--- FOLDER_STRUCTURE_START --->
|
||
```bash
|
||
uber-clone/
|
||
|- .eas/
|
||
|-- workflows/
|
||
|- app/
|
||
|-- (api)/
|
||
|-- (auth)/
|
||
|-- (root)/
|
||
|-- _layout.tsx
|
||
|-- +html.tsx
|
||
|-- index.tsx
|
||
|- assets/
|
||
|- components/
|
||
|-- custom-button.tsx
|
||
|-- driver-card.tsx
|
||
|-- google-text-input.tsx
|
||
|-- input-field.tsx
|
||
|-- map.tsx
|
||
|-- oauth.tsx
|
||
|-- payment.tsx
|
||
|-- ride-card.tsx
|
||
|-- ride-layout.tsx
|
||
|- config/
|
||
|-- index.ts
|
||
|- constants/
|
||
|-- index.ts
|
||
|- lib/
|
||
|-- auth.ts
|
||
|-- fetch.ts
|
||
|-- map.ts
|
||
|-- utils.ts
|
||
|- scripts/
|
||
|-- reset-project.js
|
||
|- store/
|
||
|-- index.ts
|
||
|- types/
|
||
|-- image.d.ts
|
||
|-- type.d.ts
|
||
|- .env.example
|
||
|- .env/.env.local
|
||
|- .eslintrc.js
|
||
|- .gitignore
|
||
|- app.json
|
||
|- babel.config.js
|
||
|- bun.lockb
|
||
|- eas.json
|
||
|- environment.d.ts
|
||
|- nativewind-env.d.ts
|
||
|- package.json
|
||
|- tailwind.config.js
|
||
|- tsconfig.json
|
||
```
|
||
<!--- FOLDER_STRUCTURE_END --->
|
||
|
||
<br />
|
||
|
||
## :toolbox: Getting Started
|
||
|
||
1. Make sure **Git** and **NodeJS** is installed.
|
||
2. Clone this repository to your local computer.
|
||
3. Create `.env` file in root folder.
|
||
4. Contents of `.env`:
|
||
|
||
```env
|
||
# .env
|
||
|
||
# clerk publishable key
|
||
EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_test_YOUR_KEY_HERE
|
||
|
||
# postgres db url (neon db)
|
||
DATABASE_URL="postgresql://username:password@hostname:port/uber-clone?sslmode=require"
|
||
|
||
# expo api server url (you can set it to any random url for development)
|
||
EXPO_PUBLIC_SERVER_URL="https://example.com/"
|
||
|
||
# geoapify api key
|
||
EXPO_PUBLIC_GEOAPIFY_API_KEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXXX
|
||
|
||
# google api key
|
||
EXPO_PUBLIC_GOOGLE_API_KEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
|
||
|
||
# areeba payment gateway (credentials issued after merchant onboarding)
|
||
AREEBA_API_BASE_URL="https://your-gateway-host.areeba.com"
|
||
AREEBA_MERCHANT_ID=your_merchant_id
|
||
AREEBA_API_PASSWORD=your_api_password
|
||
AREEBA_API_VERSION=100
|
||
```
|
||
|
||
5. Open terminal in root directory. Run `npm install --legacy-peer-deps` or `yarn install --legacy-peer-deps`.
|
||
|
||
6. Install Expo Cli using `npm i -g expo-cli` or `yarn global add expo-cli` to run your Expo app.
|
||
|
||
### **7. Clerk Publishable Key**
|
||
|
||
- Go to the [Clerk Dashboard](https://dashboard.clerk.dev/).
|
||
- Sign in or sign up if you don’t have an account.
|
||
- Create a new application (or select your existing project).
|
||
- Navigate to the "API Keys" section.
|
||
- Copy the **Publishable Key** that starts with `pk_test_`.
|
||
- Add it to your `.env` file:
|
||
|
||
```env
|
||
EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_test_YOUR_KEY_HERE
|
||
```
|
||
|
||
---
|
||
|
||
### **8. PostgreSQL Database URL (Neon Database)**
|
||
|
||
- Go to the [Neon Dashboard](https://neon.tech/).
|
||
- Sign in or create an account.
|
||
- Create a new project.
|
||
- Once the project is created, go to the "Connection Details" section.
|
||
- Copy the **connection string** and replace the placeholder values with your actual database credentials.
|
||
- The URL will look something like this:
|
||
|
||
```env
|
||
DATABASE_URL="postgresql://username:password@hostname:port/uber-clone?sslmode=require"
|
||
```
|
||
|
||
Replace `username`, `password`, `hostname`, and `port` accordingly.
|
||
|
||
---
|
||
|
||
### **9. Expo API Server URL**
|
||
|
||
- This can be any URL during development.
|
||
- Set it to a random URL for local testing:
|
||
|
||
```env
|
||
EXPO_PUBLIC_SERVER_URL="https://example.com/"
|
||
```
|
||
|
||
---
|
||
|
||
### **10. Geoapify API Key**
|
||
|
||
- Go to the [Geoapify Dashboard](https://www.geoapify.com/).
|
||
- Sign up or log in to your account.
|
||
- Navigate to the "API Keys" section under your profile.
|
||
- Generate a new API key.
|
||
- Copy the key and add it to your `.env` file:
|
||
|
||
```env
|
||
EXPO_PUBLIC_GEOAPIFY_API_KEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXXX
|
||
```
|
||
|
||
---
|
||
|
||
### **11. Google API Key**
|
||
|
||
- Go to the [Google Cloud Console](https://console.cloud.google.com/).
|
||
- Create a new project (or use an existing one).
|
||
- Navigate to the "APIs & Services" section and enable the required APIs (Places API, Directions API).
|
||
- Go to the "Credentials" tab and click on "Create Credentials."
|
||
- Select "API Key."
|
||
- Copy the generated **API Key** and add it to your `.env` file:
|
||
|
||
```env
|
||
EXPO_PUBLIC_GOOGLE_API_KEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
|
||
```
|
||
|
||
---
|
||
|
||
### **12. Areeba Payment Gateway**
|
||
|
||
- Contact [Areeba](https://www.areeba.com/) to open a merchant account (Lebanon).
|
||
- After onboarding, Areeba provides your gateway host, merchant ID, API password, and integration docs.
|
||
- Add them to your `.env` file:
|
||
|
||
```env
|
||
AREEBA_API_BASE_URL="https://your-gateway-host.areeba.com"
|
||
AREEBA_MERCHANT_ID=your_merchant_id
|
||
AREEBA_API_PASSWORD=your_api_password
|
||
AREEBA_API_VERSION=100
|
||
```
|
||
|
||
13. Now app is fully configured :+1: and you can start using this app using `expo start`.
|
||
|
||
**NOTE:** Please make sure to keep your API keys and configuration values secure and do not expose them publicly.
|
||
|
||
## :camera: Screenshots:
|
||
|
||
<p align="center">
|
||
<img src="/.github/images/img1.png" alt="Functional Login component" height="700" title="Functional Login component" />
|
||
<img src="/.github/images/img2.png" alt="Functional Register component" height="700" title="Functional Register component" />
|
||
</p>
|
||
|
||
<p align="center">
|
||
<img src="/.github/images/img3.png" alt="Modern UI/UX" height="700" title="Modern UI/UX" />
|
||
<img src="/.github/images/img4.png" alt="Choose a driver" height="700" title="Choose a driver" />
|
||
</p>
|
||
|
||
<p align="center">
|
||
<img src="/.github/images/img5.png" alt="Payment Integration with Stripe" height="700" title="Payment Integration with Stripe" />
|
||
<img src="/.github/images/img6.png" alt="Easily Book your ride" height="700" title="Easily Book your ride" />
|
||
</p>
|
||
|
||
## :gear: Tech Stack
|
||
|
||
[](https://react.dev/ "React JS") [](https://www.typescriptlang.org/ "Typescript") [](https://developer.mozilla.org/en-US/docs/Web/CSS "CSS") [](https://tailwindcss.com/ "Tailwind CSS") [](https://babeljs.io/ "Babel")
|
||
|
||
## :raised_hands: Contribute
|
||
|
||
You might encounter some bugs while using this app. You are more than welcome to contribute. Just submit changes via pull request and I will review them before merging. Make sure you follow community guidelines.
|
||
|
||
## :gem: Acknowledgements
|
||
|
||
Useful resources and libraries that are used in Ryde:
|
||
|
||
<!--- DEPENDENCIES_START --->
|
||
- [@babel/core](https://www.npmjs.com/package/@babel/core): ^7.20.0
|
||
- [@clerk/clerk-expo](https://www.npmjs.com/package/@clerk/clerk-expo): ^2.2.5
|
||
- [@expo/metro-runtime](https://www.npmjs.com/package/@expo/metro-runtime): ~3.2.3
|
||
- [@expo/vector-icons](https://www.npmjs.com/package/@expo/vector-icons): ^14.0.2
|
||
- [@gorhom/bottom-sheet](https://www.npmjs.com/package/@gorhom/bottom-sheet): ^4.6.4
|
||
- [@neondatabase/serverless](https://www.npmjs.com/package/@neondatabase/serverless): ^0.9.4
|
||
- [@react-navigation/native](https://www.npmjs.com/package/@react-navigation/native): ^6.0.2
|
||
- [@stripe/stripe-react-native](https://www.npmjs.com/package/@stripe/stripe-react-native): ^0.38.4
|
||
- [@types/jest](https://www.npmjs.com/package/@types/jest): ^29.5.12
|
||
- [@types/react](https://www.npmjs.com/package/@types/react): ~18.2.45
|
||
- [@types/react-test-renderer](https://www.npmjs.com/package/@types/react-test-renderer): ^18.0.7
|
||
- [eslint](https://www.npmjs.com/package/eslint): ^8.57.0
|
||
- [eslint-config-expo](https://www.npmjs.com/package/eslint-config-expo): ^7.1.2
|
||
- [eslint-config-prettier](https://www.npmjs.com/package/eslint-config-prettier): ^9.1.0
|
||
- [eslint-plugin-prettier](https://www.npmjs.com/package/eslint-plugin-prettier): ^5.2.1
|
||
- [expo](https://www.npmjs.com/package/expo): ~51.0.28
|
||
- [expo-constants](https://www.npmjs.com/package/expo-constants): ~16.0.2
|
||
- [expo-font](https://www.npmjs.com/package/expo-font): ~12.0.9
|
||
- [expo-linking](https://www.npmjs.com/package/expo-linking): ^6.3.1
|
||
- [expo-location](https://www.npmjs.com/package/expo-location): ^17.0.1
|
||
- [expo-router](https://www.npmjs.com/package/expo-router): ~3.5.23
|
||
- [expo-secure-store](https://www.npmjs.com/package/expo-secure-store): ^13.0.2
|
||
- [expo-splash-screen](https://www.npmjs.com/package/expo-splash-screen): ~0.27.5
|
||
- [expo-status-bar](https://www.npmjs.com/package/expo-status-bar): ~1.12.1
|
||
- [expo-system-ui](https://www.npmjs.com/package/expo-system-ui): ~3.0.7
|
||
- [expo-web-browser](https://www.npmjs.com/package/expo-web-browser): ~13.0.3
|
||
- [jest](https://www.npmjs.com/package/jest): ^29.2.1
|
||
- [jest-expo](https://www.npmjs.com/package/jest-expo): ~51.0.3
|
||
- [nativewind](https://www.npmjs.com/package/nativewind): ^2.0.11
|
||
- [prettier](https://www.npmjs.com/package/prettier): ^3.3.3
|
||
- [react](https://www.npmjs.com/package/react): 18.2.0
|
||
- [react-dom](https://www.npmjs.com/package/react-dom): 18.2.0
|
||
- [react-native](https://www.npmjs.com/package/react-native): 0.74.5
|
||
- [react-native-gesture-handler](https://www.npmjs.com/package/react-native-gesture-handler): ^2.19.0
|
||
- [react-native-google-places-autocomplete](https://www.npmjs.com/package/react-native-google-places-autocomplete): ^2.5.6
|
||
- [react-native-maps](https://www.npmjs.com/package/react-native-maps): ^1.18.0
|
||
- [react-native-maps-directions](https://www.npmjs.com/package/react-native-maps-directions): ^1.9.0
|
||
- [react-native-modal](https://www.npmjs.com/package/react-native-modal): ^13.0.1
|
||
- [react-native-reanimated](https://www.npmjs.com/package/react-native-reanimated): ~3.10.1
|
||
- [react-native-safe-area-context](https://www.npmjs.com/package/react-native-safe-area-context): 4.10.5
|
||
- [react-native-screens](https://www.npmjs.com/package/react-native-screens): 3.31.1
|
||
- [react-native-swiper](https://www.npmjs.com/package/react-native-swiper): ^1.6.0
|
||
- [react-native-web](https://www.npmjs.com/package/react-native-web): ~0.19.10
|
||
- [react-test-renderer](https://www.npmjs.com/package/react-test-renderer): 18.2.0
|
||
- [stripe](https://www.npmjs.com/package/stripe): ^16.9.0
|
||
- [tailwindcss](https://www.npmjs.com/package/tailwindcss): 3.3.2
|
||
- [typescript](https://www.npmjs.com/package/typescript): ~5.3.3
|
||
- [zustand](https://www.npmjs.com/package/zustand): ^4.5.5
|
||
|
||
<!--- DEPENDENCIES_END --->
|
||
|
||
## :coffee: Buy Me a Coffee
|
||
|
||
[<img src="https://img.shields.io/badge/Buy_Me_A_Coffee-FFDD00?style=for-the-badge&logo=buy-me-a-coffee&logoColor=black" width="200" />](https://www.buymeacoffee.com/sanidhy "Buy me a Coffee")
|
||
|
||
## :rocket: Follow Me
|
||
|
||
[](https://github.com/sanidhyy "Follow Me")
|
||
[](https://x.com/intent/tweet?text=Check+out+this+amazing+app:&url=https%3A%2F%2Fgithub.com%2Fsanidhyy%2Fzoom-clone "Tweet about this project")
|
||
|
||
## :books: Learn more
|
||
|
||
To learn more about developing your project with Expo, look at the following resources:
|
||
|
||
- [Expo documentation](https://docs.expo.dev/): Learn fundamentals, or go into advanced topics with our [guides](https://docs.expo.dev/guides).
|
||
- [Learn Expo tutorial](https://docs.expo.dev/tutorial/introduction/): Follow a step-by-step tutorial where you'll create a project that runs on Android, iOS, and the web.
|
||
|
||
## :star: Give A Star
|
||
|
||
You can also give this repository a star to show more people and they can use this repository.
|
||
|
||
## :star2: Star History
|
||
|
||
<a href="https://star-history.com/#sanidhyy/uber-clone&Timeline" title="Github Star History">
|
||
<picture>
|
||
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=sanidhyy/uber-clone&type=Timeline&theme=dark" />
|
||
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=sanidhyy/uber-clone&type=Timeline" />
|
||
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=sanidhyy/uber-clone&type=Timeline" />
|
||
</picture>
|
||
</a>
|
||
|
||
<br />
|
||
<p align="right">(<a href="#readme-top" title="Back to top">back to top</a>)</p>
|