Migration vers postgres
All checks were successful
Main Build Process / generate documentation (pull_request) Successful in 16s
Main Build Process / generate documentation (push) Successful in 18s

- suppression de sqlite
- ajout de postgres
This commit was merged in pull request #7.
This commit is contained in:
2024-09-05 23:45:05 +02:00
committed by Andre Plourde
parent 284c58188e
commit ac2b6b2c81
12 changed files with 220 additions and 132 deletions

View File

@@ -1,8 +1,16 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"ConnectionStrings": {
"DefaultConnection": "host=localhost;username=admin;database=ludikZone;Pooling=false;Timeout=300;CommandTimeout=300;Port=5432;"
},
"DB_HOST": "localhost",
"DB_PORT": 5432,
"DB_USER": "admin",
"DB_PASSWORD": "admin",
"DB_DATABASE": "ludikZone"
}