Skip to content

Commit

Permalink
backend: Exported shared modules
Browse files Browse the repository at this point in the history
  • Loading branch information
CSantosM committed Oct 18, 2024
1 parent 4927c17 commit e849979
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions backend/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ export * from './src/services/index.js';
export * from './src/models/index.js';
export * from './src/helpers/index.js';
export * from './src/server.js';
export * from './src/config/index.js';
export * from './src/utils/path-utils.js';
3 changes: 2 additions & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"dev:start": "cross-env USE_HTTPS=false SERVER_CORS_ORIGIN=* nodemon -I --exec node --experimental-specifier-resolution=node --loader ts-node/esm ./src/server.ts",
"lint": "eslint src --fix",
"format": "prettier --ignore-path .gitignore --write '**/*.{ts,js,json,md}'",
"pack": "npm pack"
"pack": "npm pack",
"dev:sync-call-pro": "npm run build && npm run pack && cp openvidu-call-server-**.tgz ../../openvidu-call-pro/backend && cd ../../openvidu-call-pro/backend && npm install openvidu-call-server-**.tgz "
},
"dependencies": {
"@aws-sdk/client-s3": "3.673.0",
Expand Down
2 changes: 2 additions & 0 deletions backend/src/config/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from './sequelize.js';
export * from './swagger.js';
1 change: 1 addition & 0 deletions backend/src/routes/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from './api.routes.js';
export * from './livekit.routes.js';
export * from './embedded.routes.js';

0 comments on commit e849979

Please sign in to comment.