본문으로 건너뛰기

B1App

B1App is the public-facing church member application built with Next.js. It provides the member experience including profiles, group directories, live streaming, and donation pages.

Before You Begin

경고

B1App requires Node.js 22 or later. Earlier versions are not supported.

Setup

1. Clone the repository

git clone https://github.com/ChurchApps/B1App.git

2. Install dependencies

cd B1App
npm install

3. Configure environment variables

cp dotenv.sample.txt .env

Open .env and configure the NEXT_PUBLIC_*_API endpoint URLs. These can point at the staging API or your local API instance.

4. Start the dev server

npm run dev

The Next.js dev server launches at http://localhost:3301.

Key Commands

CommandDescription
npm run devStart Next.js dev server on port 3301
npm run buildProduction build via Next.js
npm run testRun end-to-end tests with Playwright
npm run lintRun Next.js lint

Key Environment Variables

VariableDescription
NEXT_PUBLIC_*_APIAPI endpoint URLs for each module
정보

The postinstall script copies locale and CSS files from @churchapps/apphelper. If components look unstyled after install, run npm run postinstall manually.

Tech Stack

  • Next.js 16 with TypeScript
  • React 19 for UI components
  • Material-UI 7 for design system
  • React Query 5 for server state
  • @churchapps/apphelper* packages for shared components

Deployment

Production builds are deployed to S3 + CloudFront:

  1. npm run build generates the optimized Next.js build
  2. Build output is synced to an S3 bucket
  3. CloudFront invalidation is triggered to serve the new version

For detailed deployment instructions, see the Web App Deployment guide.