
- Complete NestJS TypeScript implementation with WebSocket support - Direct messaging (DM) and group chat functionality - End-to-end encryption with AES encryption and key pairs - Media file support (images, videos, audio, documents) up to 100MB - Push notifications with Firebase Cloud Messaging integration - Mention alerts and real-time typing indicators - User authentication with JWT and Passport - SQLite database with TypeORM entities and relationships - Comprehensive API documentation with Swagger/OpenAPI - File upload handling with secure access control - Online/offline status tracking and presence management - Message editing, deletion, and reply functionality - Notification management with automatic cleanup - Health check endpoint for monitoring - CORS configuration for cross-origin requests - Environment-based configuration management - Structured for Flutter SDK integration Features implemented: ✅ Real-time messaging with Socket.IO ✅ User registration and authentication ✅ Direct messages and group chats ✅ Media file uploads and management ✅ End-to-end encryption ✅ Push notifications ✅ Mention alerts ✅ Typing indicators ✅ Message read receipts ✅ Online status tracking ✅ File access control ✅ Comprehensive API documentation Ready for Flutter SDK development and production deployment.
60 lines
1.8 KiB
YAML
60 lines
1.8 KiB
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-20.04, macos-11.0, windows-2019]
|
|
nodeVersion: [14, 16, 18, 20]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Use Node.js ${{ matrix.nodeVersion }}
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.nodeVersion }}
|
|
- name: Test
|
|
run: npm test
|
|
- name: Package
|
|
if: startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/master')
|
|
run: npx node-pre-gyp package
|
|
- name: Upload
|
|
uses: actions/upload-artifact@v3
|
|
if: matrix.nodeVersion == '14' && (startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/master'))
|
|
with:
|
|
name: bcrypt-lib-${{ matrix.os }}-${{ matrix.nodeVersion }}
|
|
path: build/stage/**/bcrypt_lib*.tar.gz
|
|
|
|
build-alpine:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
nodeVersion: [14, 16, 18, 20]
|
|
container:
|
|
image: node:${{ matrix.nodeVersion }}-alpine
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install dependencies
|
|
run: |
|
|
apk add make g++ python3
|
|
- name: Test
|
|
run: |
|
|
npm test --unsafe-perm
|
|
- name: Package
|
|
if: startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/master')
|
|
run: npx node-pre-gyp package --unsafe-perm
|
|
- name: Upload
|
|
if: matrix.nodeVersion == '14' && (startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/master'))
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: bcrypt-lib-alpine-${{ matrix.nodeVersion }}
|
|
path: build/stage/**/bcrypt_lib*.tar.gz
|