mirror of
https://github.com/usatiuk/photos.git
synced 2025-10-28 23:37:48 +01:00
make devcontainer experience a bit nicer with npm autoinstall and one less db
This commit is contained in:
@@ -2,24 +2,18 @@
|
||||
"type": "mariadb",
|
||||
"host": "db",
|
||||
"port": 3306,
|
||||
"username": "photos",
|
||||
"password": "photos",
|
||||
"database": "photos",
|
||||
"username": "photosuser",
|
||||
"password": "photospass",
|
||||
"database": "photosdb",
|
||||
"synchronize": false,
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user