Welcome to the Starter Project! This guide will help you get up and running with both the backend and mobile parts of the project.
-
Navigate to the backend directory:
cd backend/
-
Install dependencies:
npm install
- Set up your environment variables:
Copy the
.env.example
file to a new file named.env
and fill in the necessary environment variables. -
Start the server:
npm start
The server will start on
http://localhost:8000
.
-
Navigate to the mobile directory:
cd mobile/
-
Install dependencies:
npm install
-
Start the app:
npx expo start
In the output, you'll find options to open the app in a development build, Android emulator, iOS simulator, or Expo Go.
- Backend Development: The backend code is located in the
backend/src
directory. You can add new modules, utilities, or middleware as needed. - Mobile Development: The mobile app's entry point is
mobile/app/index.tsx
. The project uses file-based routing, so you can add new screens by creating new files or directories in the app directory.