A fun sample NestJs / React project where users can register and search available rentals in their area. Supports renters, realtors, and admin users.
$ npm install
By default, the application runs on port 8000
http://localhost:8000
# development
$ npm run start:api:debug
$ npm run build:client:dev
# production mode
$ npm run start
# tests
$ npm run test
# test with coverage
$ npm run test:cov
On application start, example data is seeded into the database for use in testing out the application.
- Admin:
username: admin, password: admin
- Realtors:
username: realtor{n}, password: realtor{n}
- Ex.
username: realtor3, password: realtor3
- Ex.
- Clients:
username: client{n}, password: client{n}
- Ex.
username: client2, password: client2
- Ex.
- Add better global setup / teardown suites for e2e tests
- Add UI component to show currently selected filters