├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md └── renovate.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "nestjs-realworld-example-app"] 2 | path = nestjs-realworld-example-app 3 | url = git@github.com:mikro-orm/nestjs-realworld-example-app.git 4 | [submodule "nestjs-example-app"] 5 | path = nestjs-example-app 6 | url = git@github.com:mikro-orm/nestjs-example-app.git 7 | [submodule "express-js-example-app"] 8 | path = express-js-example-app 9 | url = git@github.com:mikro-orm/express-js-example-app 10 | [submodule "express-ts-example-app"] 11 | path = express-ts-example-app 12 | url = git@github.com:mikro-orm/express-ts-example-app 13 | [submodule "koa-ts-example-app"] 14 | path = koa-ts-example-app 15 | url = git@github.com:mikro-orm/koa-ts-example-app 16 | [submodule "graphql-ts-example-app"] 17 | path = graphql-ts-example-app 18 | url = git@github.com:driescroons/mikro-orm-graphql-example.git 19 | [submodule "serverless-mikro-orm-example-app"] 20 | path = serverless-mikro-orm-example-app 21 | url = https://github.com/thomaschaaf/serverless-mikro-orm-example-app 22 | [submodule "mikro-orm-nextjs"] 23 | path = mikro-orm-nextjs 24 | url = https://github.com/jonahallibone/mikro-orm-nextjs 25 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Martin Adámek 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [MikroORM](https://github.com/B4nan/mikro-orm) example integrations 2 | 3 | ## TypeScript examples 4 | 5 | - [Express + MongoDB](https://github.com/mikro-orm/express-ts-example-app) 6 | - [NestJS + MySQL](https://github.com/mikro-orm/nestjs-example-app) 7 | - [RealWorld example app (NestJS + MySQL)](https://github.com/mikro-orm/nestjs-realworld-example-app) 8 | - [Koa + SQLite](https://github.com/mikro-orm/koa-ts-example-app) 9 | - [GraphQL + PostgreSQL](https://github.com/driescroons/mikro-orm-graphql-example) 10 | - [Serverless](https://github.com/thomaschaaf/serverless-mikro-orm-example-app) 11 | 12 | ## JavaScript examples 13 | - [Express + MongoDB](https://github.com/mikro-orm/express-js-example-app) 14 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "config:base", 4 | ":preserveSemverRanges", 5 | ":semanticCommitTypeAll(chore)" 6 | ], 7 | "semanticCommits": "enabled", 8 | "separateMajorMinor": false, 9 | "dependencyDashboard": false, 10 | "packageRules": [ 11 | { 12 | "matchUpdateTypes": [ 13 | "patch", 14 | "minor" 15 | ], 16 | "groupName": "patch/minor dependencies", 17 | "groupSlug": "all-non-major", 18 | "automerge": true, 19 | "automergeType": "branch" 20 | } 21 | ], 22 | "schedule": [ 23 | "every weekday" 24 | ] 25 | } 26 | --------------------------------------------------------------------------------