744 B
744 B
Setup Status
Initial setup has been started with your DB config:
- Host:
demo.venbait.in - Port:
5432 - Database:
bharaterp - User:
bharaterpdevdbuser
What is ready
- Base Node/Express scaffold in
src/ - Environment files (
.env,.env.example) - Prisma datasource in
prisma/schema.prisma - Database bootstrap script:
scripts/setup-db.sh
Run DB setup
cd /home/smart/Documents/ERP_BE
./scripts/setup-db.sh /home/smart/Downloads/erp_phase1_ddl.sql
The script:
- Creates
bharaterpif it does not exist - Executes the provided Phase 1 DDL on that database
Next steps
- Install npm dependencies (if network allows)
- Generate Prisma client:
npm run prisma:generate - Start API:
npm run dev