Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat:cleanup root dir #2853

Merged
merged 3 commits into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-compose.dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
- "127.0.0.1:27017:27017"
volumes:
- mongo_data:/data/db
- ./init-mongo.sh:/init-mongo.sh
- ./scripts/docker/init-mongo.sh:/init-mongo.sh
networks:
- talawa-network
entrypoint: ["/bin/bash", "/init-mongo.sh"]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "talawa-api is a backend repository written using Node.js and graphql for generating APIs for the talawa flutter app.",
"main": "./build/server.js",
"scripts": {
"build": "tsc --pretty --project tsconfig.build.json && node ./fix-imports/fix-imports.mjs && node ./fix-imports/fix-imports-graphql.mjs",
"build": "tsc --pretty --project tsconfig.build.json && node .scripts/fix-imports/fix-imports.mjs && node .scritps/fix-imports/fix-imports-graphql.mjs",
"dev": "concurrently \"nodemon --exec tsx ./src/index.ts\" \"graphql-codegen --watch\"",
"minio:check": "tsc ./src/minioInstallationCheck.ts --outDir ./build && node ./build/minioInstallationCheck.js",
"dev:with-minio": "concurrently \"npm run minio:check\" \"nodemon --exec tsx ./src/index.ts\" \"graphql-codegen --watch\"",
Expand Down
File renamed without changes.
File renamed without changes.
Loading