git clone https://github.com/Block-Chain-Valley/bv-client-server-boilerplate.git
# 최초 설치
git submodule init
git submodule update
git submodule foreach git checkout master
# 이후 신규 Submodule 설치 시
git submodule update --remote --merge
apps/server 에 .env.development 파일 생성 후, .env.sample 파일 복사
(온체인 관련 환경 변수는 별도 요청 필요)
# 최초 1회 시작 시 (데이터베이스 마이그레이션 필요)
docker-compose up -d
yarn db-migrate:local
yarn start:all
# 이후
yarn start:all
# App 폴더 내 특정 앱 단독 실행
yarn nx serve APP_NAME
# Lint
yarn lint:all
# Test
yarn test:all
