diff --git a/README.md b/README.md
index 0a6723d..3924981 100644
--- a/README.md
+++ b/README.md
@@ -14,14 +14,15 @@
@@ -39,8 +40,8 @@
**Join our stargazers :)**
-
-
+
+
@@ -58,7 +59,7 @@ DevAsign Mobile App is a modern, mobile-first web application designed for devel
- **Wallet & Earnings**: Monitor your earnings, view transaction history, and manage your wallet.
- **In-App Messaging**: Communicate with task creators and other developers.
- **Notifications**: Stay updated with real-time alerts for task updates and messages.
-- **User Profile**: manageable profile and settings.
+- **User Profile**: Manage your profile and settings.
### Tech Stack
@@ -84,8 +85,8 @@ Follow these steps to set up and run the project locally.
1. Clone the repository:
```bash
- git clone https://github.com/bishopBethel/devasign-mobile-app.git
- cd devasign-mobile-app
+ git clone https://github.com/devasignhq/mobile-app.git
+ cd mobile-app
```
2. Install dependencies:
@@ -127,20 +128,24 @@ The API automatically composes `DATABASE_URL` from the individual `POSTGRES_*` v
#### Running the App
-Start the development server:
+Start the development server from the repo root (runs the mobile app and API together):
```bash
-npm run dev
+pnpm dev
```
-The application will be available at `http://localhost:5173` (or the port shown in your terminal).
+The web UI is usually at `http://localhost:5173` (Vite prints the exact URL in the terminal). To run only the frontend:
+
+```bash
+pnpm --filter @devasign/mobile dev
+```
## Building for Production
-To build the application for production:
+To build all packages for production:
```bash
-npm run build
+pnpm build
```
-This will generate the optimized files in the `dist` directory.
+Each package writes its output under its own `dist` directory (for example `packages/mobile/dist` for the Vite app).