update deps, node >= 14, add mariadb and postgres to tests
This commit is contained in:
19
tests/seeds/config.mariadb.json
Normal file
19
tests/seeds/config.mariadb.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"baseurl": "http://localhost:13120",
|
||||
"hostname": "localhost",
|
||||
"server": {
|
||||
"host": "0.0.0.0",
|
||||
"port": 13120
|
||||
},
|
||||
"log_level": "warn",
|
||||
"log_path": "./logs",
|
||||
"db": {
|
||||
"dialect": "mariadb",
|
||||
"host": "localhost",
|
||||
"database": "gancio",
|
||||
"username": "gancio",
|
||||
"password": "gancio",
|
||||
"logging": false
|
||||
},
|
||||
"upload_path": "./uploads"
|
||||
}
|
||||
19
tests/seeds/config.postgres.json
Normal file
19
tests/seeds/config.postgres.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"baseurl": "http://localhost:13120",
|
||||
"hostname": "localhost",
|
||||
"server": {
|
||||
"host": "0.0.0.0",
|
||||
"port": 13120
|
||||
},
|
||||
"log_level": "warn",
|
||||
"log_path": "./logs",
|
||||
"db": {
|
||||
"dialect": "postgres",
|
||||
"host": "localhost",
|
||||
"database": "gancio",
|
||||
"username": "gancio",
|
||||
"password": "gancio",
|
||||
"logging": false
|
||||
},
|
||||
"upload_path": "./uploads"
|
||||
}
|
||||
16
tests/seeds/config.sqlite.json
Normal file
16
tests/seeds/config.sqlite.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"baseurl": "http://localhost:13120",
|
||||
"hostname": "127.0.0.1",
|
||||
"server": {
|
||||
"host": "0.0.0.0",
|
||||
"port": 13120
|
||||
},
|
||||
"log_level": "warn",
|
||||
"log_path": "./logs",
|
||||
"db": {
|
||||
"dialect": "sqlite",
|
||||
"storage": "./tests/seeds/testdb.sqlite",
|
||||
"logging": false
|
||||
},
|
||||
"upload_path": "./uploads"
|
||||
}
|
||||
Reference in New Issue
Block a user