-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(sandbox): build sandbox docker-compose file without error
- Loading branch information
1 parent
a276aea
commit 814fad6
Showing
67 changed files
with
26,237 additions
and
67,803 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,87 +1,87 @@ | ||
{ | ||
"name": "@sourceloop/audit-ms-example", | ||
"version": "0.7.12", | ||
"description": "An audit microservice example", | ||
"keywords": [ | ||
"loopback-application", | ||
"loopback" | ||
], | ||
"private": true, | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"engines": { | ||
"node": "18 || 20" | ||
}, | ||
"scripts": { | ||
"build": "npm run clean && lb-tsc", | ||
"build:watch": "lb-tsc --watch", | ||
"lint": "npm run eslint && npm run prettier:check", | ||
"lint:fix": "npm run eslint:fix && npm run prettier:fix", | ||
"prettier:cli": "prettier \"**/*.ts\" \"**/*.js\"", | ||
"prettier:check": "npm run prettier:cli -- -l", | ||
"prettier:fix": "npm run prettier:cli -- --write", | ||
"eslint": "eslint --report-unused-disable-directives .", | ||
"eslint:fix": "npm run eslint -- --fix", | ||
"pretest": "npm run rebuild", | ||
"test": "echo 'No Tests'", | ||
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js", | ||
"docker:build": "docker build -t audit-example .", | ||
"docker:run": "docker run -p 3000:3000 -d audit-example", | ||
"premigrate": "npm run build", | ||
"migrate": "node migration.js", | ||
"preopenapi-spec": "npm run build", | ||
"openapi-spec": "node ./dist/openapi-spec", | ||
"rebuild": "npm run clean && npm run build", | ||
"prestart": "npm run rebuild", | ||
"start": "node -r source-map-support/register .", | ||
"clean": "lb-clean dist *.tsbuildinfo .eslintcache", | ||
"db:migrate": "./node_modules/db-migrate/bin/db-migrate up --config './migrations/database.json'", | ||
"db:migrate:down": "./node_modules/db-migrate/bin/db-migrate down --config './migrations/database.json'", | ||
"db:migrate:reset": "./node_modules/db-migrate/bin/db-migrate reset --config './migrations/database.json'" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "" | ||
}, | ||
"author": "Akshat Dubey <[email protected]>", | ||
"license": "MIT", | ||
"files": [ | ||
"README.md", | ||
"dist", | ||
"src", | ||
"!*/__tests__" | ||
], | ||
"dependencies": { | ||
"@loopback/boot": "^6.1.5", | ||
"@loopback/context": "^6.1.5", | ||
"@loopback/core": "^5.1.5", | ||
"@loopback/repository": "^6.1.5", | ||
"@loopback/rest": "^13.1.5", | ||
"@loopback/rest-explorer": "^6.1.5", | ||
"@loopback/service-proxy": "^6.1.5", | ||
"@sourceloop/audit-log": "^5.3.1", | ||
"@sourceloop/audit-service": "^12.0.0", | ||
"@sourceloop/core": "^13.0.0", | ||
"ajv": "^8.11.0", | ||
"ajv-errors": "^3.0.0", | ||
"db-migrate": "^1.0.0-beta.21", | ||
"db-migrate-pg": "^1.3.0", | ||
"dotenv": "^16.0.3", | ||
"dotenv-extended": "^2.9.0", | ||
"loopback-connector-postgresql": "^7.0.2", | ||
"loopback4-authentication": "^11.0.2", | ||
"loopback4-authorization": "^6.2.1", | ||
"loopback4-soft-delete": "^9.1.1", | ||
"prom-client": "^14.0.1", | ||
"tslib": "^2.6.2" | ||
}, | ||
"devDependencies": { | ||
"@loopback/build": "^10.1.5", | ||
"@loopback/eslint-config": "^14.0.4", | ||
"@loopback/testlab": "^6.1.5", | ||
"@types/node": "^18.11.9", | ||
"eslint": "^8.44.0", | ||
"source-map-support": "^0.5.21", | ||
"typescript": "~4.9.5" | ||
} | ||
} | ||
"name": "@sourceloop/audit-ms-example", | ||
"version": "0.7.12", | ||
"description": "An audit microservice example", | ||
"keywords": [ | ||
"loopback-application", | ||
"loopback" | ||
], | ||
"private": true, | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"engines": { | ||
"node": "18 || 20" | ||
}, | ||
"scripts": { | ||
"build": "npm run clean && lb-tsc", | ||
"build:watch": "lb-tsc --watch", | ||
"lint": "npm run eslint && npm run prettier:check", | ||
"lint:fix": "npm run eslint:fix && npm run prettier:fix", | ||
"prettier:cli": "prettier \"**/*.ts\" \"**/*.js\"", | ||
"prettier:check": "npm run prettier:cli -- -l", | ||
"prettier:fix": "npm run prettier:cli -- --write", | ||
"eslint": "eslint --report-unused-disable-directives .", | ||
"eslint:fix": "npm run eslint -- --fix", | ||
"pretest": "npm run rebuild", | ||
"test": "echo 'No Tests'", | ||
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js", | ||
"docker:build": "docker build -t audit-example .", | ||
"docker:run": "docker run -p 3000:3000 -d audit-example", | ||
"premigrate": "npm run build", | ||
"migrate": "node migration.js", | ||
"preopenapi-spec": "npm run build", | ||
"openapi-spec": "node ./dist/openapi-spec", | ||
"rebuild": "npm run clean && npm run build", | ||
"prestart": "npm run rebuild", | ||
"start": "node -r source-map-support/register .", | ||
"clean": "lb-clean dist *.tsbuildinfo .eslintcache", | ||
"db:migrate": "./node_modules/db-migrate/bin/db-migrate up --config './migrations/database.json'", | ||
"db:migrate:down": "./node_modules/db-migrate/bin/db-migrate down --config './migrations/database.json'", | ||
"db:migrate:reset": "./node_modules/db-migrate/bin/db-migrate reset --config './migrations/database.json'" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "" | ||
}, | ||
"author": "Akshat Dubey <[email protected]>", | ||
"license": "MIT", | ||
"files": [ | ||
"README.md", | ||
"dist", | ||
"src", | ||
"!*/__tests__" | ||
], | ||
"dependencies": { | ||
"@loopback/boot": "^7.0.0", | ||
"@loopback/context": "^7.0.0", | ||
"@loopback/core": "^6.0.0", | ||
"@loopback/repository": "^7.0.0", | ||
"@loopback/rest": "^14.0.0", | ||
"@loopback/rest-explorer": "^7.0.0", | ||
"@loopback/service-proxy": "^7.0.0", | ||
"@sourceloop/audit-log": "^7.0.0", | ||
"@sourceloop/audit-service": "^12.0.0", | ||
"@sourceloop/core": "^13.0.0", | ||
"ajv": "^8.11.0", | ||
"ajv-errors": "^3.0.0", | ||
"db-migrate": "^1.0.0-beta.21", | ||
"db-migrate-pg": "^1.3.0", | ||
"dotenv": "^16.0.3", | ||
"dotenv-extended": "^2.9.0", | ||
"loopback-connector-postgresql": "^7.0.4", | ||
"loopback4-authentication": "^12.0.0", | ||
"loopback4-authorization": "^7.0.0", | ||
"loopback4-soft-delete": "^10.0.0", | ||
"prom-client": "^14.0.1", | ||
"tslib": "^2.6.2" | ||
}, | ||
"devDependencies": { | ||
"@loopback/build": "^11.0.0", | ||
"@loopback/eslint-config": "^15.0.0", | ||
"@loopback/testlab": "^7.0.0", | ||
"@types/node": "^18.11.9", | ||
"eslint": "^8.44.0", | ||
"source-map-support": "^0.5.21", | ||
"typescript": "~4.9.5" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,95 +1,95 @@ | ||
{ | ||
"name": "@sourceloop/auth-ms-basic-example", | ||
"version": "0.11.11", | ||
"description": "Auth microservice basic example", | ||
"keywords": [ | ||
"loopback-application", | ||
"loopback" | ||
], | ||
"private": true, | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"engines": { | ||
"node": "18 || 20" | ||
}, | ||
"scripts": { | ||
"build": "npm run clean && lb-tsc", | ||
"build:watch": "lb-tsc --watch", | ||
"lint": "npm run eslint && npm run prettier:check", | ||
"lint:fix": "npm run eslint:fix && npm run prettier:fix", | ||
"prettier:cli": "prettier \"**/*.ts\" \"**/*.js\"", | ||
"prettier:check": "npm run prettier:cli -- -l", | ||
"prettier:fix": "npm run prettier:cli -- --write", | ||
"eslint": "eslint --report-unused-disable-directives .", | ||
"eslint:fix": "npm run eslint -- --fix", | ||
"pretest": "npm run rebuild", | ||
"test": "echo 'No Tests'", | ||
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js", | ||
"docker:build": "docker build -t auth-multitenant-example .", | ||
"docker:run": "docker run -p 3000:3000 -d auth-multitenant-example", | ||
"premigrate": "npm run build", | ||
"migrate": "node ./dist/migrate", | ||
"preopenapi-spec": "npm run build", | ||
"openapi-spec": "node ./dist/openapi-spec", | ||
"rebuild": "npm run clean && npm run build", | ||
"prestart": "npm run rebuild", | ||
"start": "node -r source-map-support/register .", | ||
"clean": "lb-clean dist *.tsbuildinfo .eslintcache", | ||
"db:migrate": "./node_modules/db-migrate/bin/db-migrate up --config './migrations/database.json'", | ||
"db:migrate:down": "./node_modules/db-migrate/bin/db-migrate down --config './migrations/database.json'", | ||
"db:migrate:reset": "./node_modules/db-migrate/bin/db-migrate reset --config './migrations/database.json'" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "" | ||
}, | ||
"author": "Akshat Dubey <[email protected]>", | ||
"license": "MIT", | ||
"files": [ | ||
"README.md", | ||
"dist", | ||
"src", | ||
"!*/__tests__" | ||
], | ||
"dependencies": { | ||
"@loopback/boot": "^6.1.5", | ||
"@loopback/context": "^6.1.5", | ||
"@loopback/core": "^5.1.5", | ||
"@loopback/repository": "^6.1.5", | ||
"@loopback/repository-json-schema": "^7.2.1", | ||
"@loopback/rest": "^13.1.5", | ||
"@loopback/rest-explorer": "^6.1.5", | ||
"@loopback/service-proxy": "^6.1.5", | ||
"@sourceloop/authentication-service": "^18.0.0", | ||
"@sourceloop/core": "^13.0.0", | ||
"ajv": "^8.11.0", | ||
"ajv-errors": "^3.0.0", | ||
"bcrypt": "^5.0.1", | ||
"db-migrate": "^1.0.0-beta.21", | ||
"db-migrate-pg": "^1.3.0", | ||
"dotenv": "^16.0.3", | ||
"dotenv-extended": "^2.9.0", | ||
"loopback-connector-kv-redis": "^4.0.0", | ||
"loopback-connector-postgresql": "^7.0.2", | ||
"loopback4-authentication": "^11.0.2", | ||
"loopback4-authorization": "^6.2.1", | ||
"loopback4-soft-delete": "^9.1.1", | ||
"prom-client": "^14.0.1", | ||
"tslib": "^2.6.2" | ||
}, | ||
"devDependencies": { | ||
"@loopback/build": "^10.1.5", | ||
"@loopback/eslint-config": "^14.0.4", | ||
"@loopback/testlab": "^6.1.5", | ||
"@types/bcrypt": "^5.0.0", | ||
"@types/node": "^18.11.9", | ||
"eslint": "^8.44.0", | ||
"source-map-support": "^0.5.21", | ||
"typescript": "~4.9.5" | ||
}, | ||
"overrides": { | ||
"check-code-coverage": { | ||
"lodash": "^4.17.21" | ||
"name": "@sourceloop/auth-ms-basic-example", | ||
"version": "0.11.11", | ||
"description": "Auth microservice basic example", | ||
"keywords": [ | ||
"loopback-application", | ||
"loopback" | ||
], | ||
"private": true, | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"engines": { | ||
"node": "18 || 20" | ||
}, | ||
"scripts": { | ||
"build": "npm run clean && lb-tsc", | ||
"build:watch": "lb-tsc --watch", | ||
"lint": "npm run eslint && npm run prettier:check", | ||
"lint:fix": "npm run eslint:fix && npm run prettier:fix", | ||
"prettier:cli": "prettier \"**/*.ts\" \"**/*.js\"", | ||
"prettier:check": "npm run prettier:cli -- -l", | ||
"prettier:fix": "npm run prettier:cli -- --write", | ||
"eslint": "eslint --report-unused-disable-directives .", | ||
"eslint:fix": "npm run eslint -- --fix", | ||
"pretest": "npm run rebuild", | ||
"test": "echo 'No Tests'", | ||
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js", | ||
"docker:build": "docker build -t auth-multitenant-example .", | ||
"docker:run": "docker run -p 3000:3000 -d auth-multitenant-example", | ||
"premigrate": "npm run build", | ||
"migrate": "node ./dist/migrate", | ||
"preopenapi-spec": "npm run build", | ||
"openapi-spec": "node ./dist/openapi-spec", | ||
"rebuild": "npm run clean && npm run build", | ||
"prestart": "npm run rebuild", | ||
"start": "node -r source-map-support/register .", | ||
"clean": "lb-clean dist *.tsbuildinfo .eslintcache", | ||
"db:migrate": "./node_modules/db-migrate/bin/db-migrate up --config './migrations/database.json'", | ||
"db:migrate:down": "./node_modules/db-migrate/bin/db-migrate down --config './migrations/database.json'", | ||
"db:migrate:reset": "./node_modules/db-migrate/bin/db-migrate reset --config './migrations/database.json'" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "" | ||
}, | ||
"author": "Akshat Dubey <[email protected]>", | ||
"license": "MIT", | ||
"files": [ | ||
"README.md", | ||
"dist", | ||
"src", | ||
"!*/__tests__" | ||
], | ||
"dependencies": { | ||
"@loopback/boot": "^7.0.0", | ||
"@loopback/context": "^7.0.0", | ||
"@loopback/core": "^6.0.0", | ||
"@loopback/repository": "^7.0.0", | ||
"@loopback/repository-json-schema": "^8.0.0", | ||
"@loopback/rest": "^14.0.0", | ||
"@loopback/rest-explorer": "^7.0.0", | ||
"@loopback/service-proxy": "^7.0.0", | ||
"@sourceloop/authentication-service": "^17.0.0", | ||
"@sourceloop/core": "^13.0.0", | ||
"ajv": "^8.11.0", | ||
"ajv-errors": "^3.0.0", | ||
"bcrypt": "^5.0.1", | ||
"db-migrate": "^1.0.0-beta.21", | ||
"db-migrate-pg": "^1.3.0", | ||
"dotenv": "^16.0.3", | ||
"dotenv-extended": "^2.9.0", | ||
"loopback-connector-kv-redis": "^4.0.0", | ||
"loopback-connector-postgresql": "^7.0.4", | ||
"loopback4-authentication": "^12.0.0", | ||
"loopback4-authorization": "^7.0.0", | ||
"loopback4-soft-delete": "^10.0.0", | ||
"prom-client": "^14.0.1", | ||
"tslib": "^2.6.2" | ||
}, | ||
"devDependencies": { | ||
"@loopback/build": "^11.0.0", | ||
"@loopback/eslint-config": "^15.0.0", | ||
"@loopback/testlab": "^7.0.0", | ||
"@types/bcrypt": "^5.0.0", | ||
"@types/node": "^18.11.9", | ||
"eslint": "^8.44.0", | ||
"source-map-support": "^0.5.21", | ||
"typescript": "~4.9.5" | ||
}, | ||
"overrides": { | ||
"check-code-coverage": { | ||
"lodash": "^4.17.21" | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.