A backend service built with Nest.js to handle user registration, login, email verification, organization creation, and user roles using JWT-based authentication and role-based authorization. Features asynchronous email sending with Redis queues.
- TypeScript
- Nest.js with TypeORM (PostgreSQL)
- Bull Queue (Redis)
- JWT Authentication
- SendGrid (for emails)
- Prettier, ESLint, Jest
- User Registration: Register with email confirmation via SendGrid.
- Email Verification: Verify email to receive a JWT.
- Login: Sign in to generate JWT cookie.
- Organization Management: Create organizations, invite users, assign roles.
- Role-based Authorization: Assign roles and control access to endpoints based on permissions.
git clone https://github.com/anicmarko9/nest-guard.git
git checkout -b features/your-name
npm ci
sudo service redis-server start
psql -U postgres -p 5432 -c 'create database nest_guard_db;'
- Sign up at SendGrid and generate your API key.
- Copy the
.env.example
file and create your own.env
file in the root directory
npm run dev
- typecheck:
npm run typecheck
- eslint:
npm run ci:format
- prettier:
npm run ci:lint
- jest:
npm run ci:test
- build:
npm run build