Vylpes
7decd28dc9
* Create scripts * Create github workflows * Create initial DB migration script * Make default bot prefix configurable * Add bot token fetcher
24 lines
No EOL
480 B
JSON
24 lines
No EOL
480 B
JSON
{
|
|
"type": "mysql",
|
|
"host": "localhost",
|
|
"port": 3101,
|
|
"username": "dev",
|
|
"password": "dev",
|
|
"database": "vylbot",
|
|
"synchronize": false,
|
|
"logging": false,
|
|
"entities": [
|
|
"dist/entity/**/*.js"
|
|
],
|
|
"migrations": [
|
|
"dist/migration/**/*.js"
|
|
],
|
|
"subscribers": [
|
|
"dist/subscriber/**/*.js"
|
|
],
|
|
"cli": {
|
|
"entitiesDir": "dist/entity",
|
|
"migrationsDir": "dist/migration",
|
|
"subscribersDir": "dist/subscriber"
|
|
}
|
|
} |