4837 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / ormconfig.multi.json JSON
{
  "mongodb": {
    "type": "mongodb",
    "host": "localhost",
    "port": 27017,
    "database": "test",
    "synchronize": true,
    "logging": true,
    "entities": [
      "src/entity/**/*.ts"
    ]
  },
  "mysql": {
    "type": "mysql",
    "host": "localhost",
    "port": 3306,
    "username": "root",
    "password": "root",
    "database": "test",
    "synchronize": true,
    "logging": true,
    "entities": [
      "src/entity/**/*.ts"
    ]
  },
  "postgres": {
    "type": "postgres",
    "host": "localhost",
    "port": 5432,
    "username": "root",
    "password": "root",
    "database": "test",
    "synchronize": true,
    "logging": true,
    "entities": [
      "src/entity/**/*.ts"
    ]
  }
}