Skip to content

developeratul/claire

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Expo Mobile Starter

Opinionated starter for React Native apps: Expo Router, NativeWind, React Native Reusables, Clerk auth, and Convex backend with a minimal user profile and onboarding flow.

Derived from a production app; product-specific docs and branding were removed so you can rename and build your own app on top.

Prerequisites

First-time setup

1. Install dependencies

pnpm install

2. Environment files

Copy the example env and fill in values:

cp .env.example .env.local

If you already used .env.development, rename it to .env.local or merge its variables there.

Variable Where to get it
APP_ENV local, staging, or production; omit to default to local (see env.js)
EXPO_PUBLIC_CONVEX_URL Convex dashboard after pnpm convex:dev
EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY Clerk Dashboard → API Keys
CONVEX_DEPLOYMENT Shown when you run Convex dev, or project settings
CLERK_WEBHOOK_SECRET Clerk → Webhooks → endpoint signing secret (also set in Convex dashboard for production)
CLERK_FRONTEND_API_URL Clerk → JWT templates (Convex) → Issuer URL

3. Convex + Clerk

  • In Clerk, enable the Convex JWT template (or follow Clerk + Convex).
  • Start Convex locally (pushes functions and gives you a deployment URL):
pnpm convex:dev

Add the printed EXPO_PUBLIC_CONVEX_URL and CONVEX_DEPLOYMENT to .env.local if not already set.

4. Run the app

pnpm dev

Then press i (iOS simulator), a (Android emulator), or w (web). Expo Go works for quick device testing.

Note: The dev script uses Unix-style env (EXPO_NO_DOTENV=1). On Windows, use Git Bash, WSL, or run set EXPO_NO_DOTENV=1 then pnpm exec expo start -c in PowerShell.

Customizing the app name

Search and replace (or rename manually):

Location What to change
package.json name
app.config.ts name, slug, scheme
Splash / icons assets/images/ (icon.png, splash.png, adaptive-icon.png, etc.)
Welcome screen app/welcome.tsx (title and tagline)
Clerk Dashboard Allowed redirect / native URLs: include your app scheme (e.g. expomobilestarter://, Expo dev URLs) after you change scheme in app.config.ts

Project layout (short)

  • app/ — Expo Router screens ((auth), (onboarding), (protected))
  • components/ — Shared UI (Reusables-based) and layout
  • features/ — Feature modules (e.g. users)
  • convex/ — Schema, HTTP routes, domain folders (users/, …)
  • providers/ — Clerk, Convex, auth routing
  • docs/TECH_STACK.md — Dependencies and versions that match package.json

Adding UI components

npx @react-native-reusables/cli@latest add [component-name]

More documentation

Optional: publish as a GitHub template

Create a new repo from this folder, then in GitHub: Settings → General → Template repository.

About

The personal finance app you have been looking for

Resources

Stars

0 stars

Watchers

0 watching

Forks

Contributors