initialized project

This commit is contained in:
D. Scott Boggs 2024-06-06 08:09:36 -04:00
commit 5049509c17
6 changed files with 211 additions and 0 deletions

23
config/config.json Normal file
View file

@ -0,0 +1,23 @@
{
"development": {
"username": "root",
"password": null,
"database": "database_development",
"host": "127.0.0.1",
"dialect": "mysql"
},
"test": {
"username": "root",
"password": null,
"database": "database_test",
"host": "127.0.0.1",
"dialect": "mysql"
},
"production": {
"username": "root",
"password": null,
"database": "database_production",
"host": "127.0.0.1",
"dialect": "mysql"
}
}