https://github.com/aldeebhasan/drgn
A real-time chat app built with Angular (frontend) and NestJS (backend). Features include WebSocket messaging, emoji support, file sharing, and JWT authentication.
https://github.com/aldeebhasan/drgn
angular nestjs postgresql tailwind
Last synced: 4 months ago
JSON representation
A real-time chat app built with Angular (frontend) and NestJS (backend). Features include WebSocket messaging, emoji support, file sharing, and JWT authentication.
- Host: GitHub
- URL: https://github.com/aldeebhasan/drgn
- Owner: aldeebhasan
- Created: 2025-03-24T22:13:02.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-08-03T17:06:01.000Z (11 months ago)
- Last Synced: 2025-08-03T19:05:10.653Z (11 months ago)
- Topics: angular, nestjs, postgresql, tailwind
- Language: TypeScript
- Homepage: https://drgn-production.up.railway.app/
- Size: 938 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Description
A real-time chat app built with Angular (frontend) and NestJS (backend). Features include WebSocket messaging, emoji support, file sharing, and JWT authentication.
## Project setup
### Client configuration
First you need to build the frontend project then you can simply run the application
```bash
$ cd client
$ npm ci
#development
$ npm run start
# watch mode
$ npm run watch
# production mode
$ npm run build
```
### Api Configuration
Next you will return back to the backend folder to finish the project setup
First you need to setup the environment file
```bash
$ cp .env.example .env
```
Then run the follows
```bash
$ cd api
$ npm ci
$ npm run migration:run
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
```
## Deployment
For deployment you need first to build the front end project then run the following:
```bash
$ cd client
$ npm ci
$ npm run build
$ cd api
$ npm ci
$ npm run migration:run
$ npm run build
$ npm run start:prod
```
## Credits
- [Hasan Deeb](https://github.com/aldeebhasan)
- [All Contributors](../../contributors)
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
