Change the username and password for the development DB
This commit is contained in:
parent
beea66ad30
commit
e120e58b07
2 changed files with 3 additions and 3 deletions
|
@ -28,7 +28,7 @@ Les informations nécessaire à l'initialisation de la base doivent être pré-c
|
||||||
|
|
||||||
su - postgres
|
su - postgres
|
||||||
psql
|
psql
|
||||||
> create user tps with password 'lol' superuser;
|
> create user tps_development with password 'tps_development' superuser;
|
||||||
> create user tps_test with password 'tps_test' superuser;
|
> create user tps_test with password 'tps_test' superuser;
|
||||||
> \q
|
> \q
|
||||||
|
|
||||||
|
|
|
@ -4,8 +4,8 @@ development:
|
||||||
database: tps_development
|
database: tps_development
|
||||||
host: localhost
|
host: localhost
|
||||||
pool: 5
|
pool: 5
|
||||||
username: tps
|
username: tps_development
|
||||||
password: lol
|
password: tps_development
|
||||||
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
|
|
Loading…
Reference in a new issue