make devcontainer experience a bit nicer with npm autoinstall and one less db

This commit is contained in:
2023-01-14 23:24:23 +00:00
committed by Stepan Usatiuk
parent 101e2ceed7
commit 09844e5294
6 changed files with 45 additions and 83 deletions

View File

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