A progressive Node.js framework for building efficient and scalable server-side applications.
Nest based wallet authorization service that uses verified random nonces for wallet-based logins.
$ npm install
- Postgres running on your desired port.
- Postgres user configured for DB connectivity.
Configure your local setup via providing a .env
file (.env.example
provided for inspiration).
To generate the database schema used switch the synchronize: true
on in src/app.module.ts
.
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
Please consult our documentation here.