Fix db config for pg and mysql in getstarted

This commit is contained in:
Alexandre Bodin 2021-08-06 09:18:11 +02:00
parent 9ad5740952
commit 7f5ca6b479

View File

@ -10,7 +10,7 @@ const postgres = {
client: 'postgres',
connection: {
database: 'strapi',
username: 'strapi',
user: 'strapi',
password: 'strapi',
port: 5432,
host: 'localhost',
@ -22,7 +22,7 @@ const mysql = {
client: 'mysql',
connection: {
database: 'strapi',
username: 'strapi',
user: 'strapi',
password: 'strapi',
port: 3306,
host: 'localhost',