remove ormconfig from repo

This commit is contained in:
2020-10-11 18:59:36 +03:00
committed by Stepan Usatiuk
parent 978c0d9438
commit 76ed7878c0
4 changed files with 2 additions and 51 deletions

2
.gitignore vendored
View File

@@ -5,6 +5,8 @@ tmp/
temp/
dist/
ormconfig.json
ormconfig.dev.json
ormconfig.test.json
.env
.directory
.history

1
frontend/.gitignore vendored
View File

@@ -5,7 +5,6 @@ tmp/
temp/
dist/
ormconfig.json
ormconfig.test.json
.env
.cache
.directory

View File

@@ -1,25 +0,0 @@
{
"type": "mariadb",
"host": "localhost",
"port": 3306,
"username": "photos",
"password": "photos",
"database": "photos",
"synchronize": true,
"logging": false,
"entities": [
"src/entity/**/*.ts"
],
"migrations": [
"src/migration/**/*.ts"
],
"subscribers": [
"src/subscriber/**/*.ts"
],
"cli": {
"entitiesDir": "src/entity",
"migrationsDir": "src/migration",
"subscribersDir": "src/subscriber"
},
"charset": "utf8mb4"
}

View File

@@ -1,25 +0,0 @@
{
"type": "mariadb",
"host": "localhost",
"port": 3306,
"username": "photos",
"password": "photos",
"database": "photos_test",
"synchronize": true,
"logging": false,
"entities": [
"src/entity/**/*.ts"
],
"migrations": [
"src/migration/**/*.ts"
],
"subscribers": [
"src/subscriber/**/*.ts"
],
"cli": {
"entitiesDir": "src/entity",
"migrationsDir": "src/migration",
"subscribersDir": "src/subscriber"
},
"charset": "utf8mb4"
}