This commit is contained in:
2020-09-16 17:49:19 +02:00
commit 63cd5f112f
26 changed files with 2616 additions and 0 deletions

24
ormconfig.json Normal file
View File

@@ -0,0 +1,24 @@
{
"type": "mysql",
"host": "sql1.dennisgunia.de",
"port": 7574,
"username": "joke",
"password": "FivXcBxrUB6Fm5qN",
"database": "joke",
"synchronize": true,
"logging": false,
"entities": [
"dist/entity/**/*.js"
],
"migrations": [
"dist/migration/**/*.js"
],
"subscribers": [
"dist/subscriber/**/*.js"
],
"cli": {
"entitiesDir": "dist/entity",
"migrationsDir": "dist/migration",
"subscribersDir": "dist/subscriber"
}
}