Skip to content

Commit

Permalink
adjustments to configModel to defaulted usernames
Browse files Browse the repository at this point in the history
# Co-authored-by
Co-authored-by:  Cathy Luong<[email protected]>
Co-authored-by: Zoren Labrador <[email protected]>
Co-authored-by: Kevin Chou <[email protected]>
  • Loading branch information
user-byte123 committed Feb 8, 2024
1 parent b42b098 commit f816576
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions backend/src/models/configModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const configPath = `${home}/${configFile}`;

// ideally, we want to keep this config in a seperate file as well
export const defaultFile: DocConfigFile = {
mysql_options: { user: '', password: '', port: 3306 },
pg_options: { user: '', password: '', port: 5432 },
mysql_options: { user: 'root', password: '', port: 3306 },
pg_options: { user: 'postgres', password: '', port: 5432 },
rds_mysql_options: {
user: '',
password: '',
Expand Down
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"mysql_options":{"user":"root","password":"","port":"3306"},"pg_options":{"user":"postgres","password":"Skittle5$s","port":"5434"},"rds_mysql_options":{"user":"","password":"","port":"","host":""},"rds_pg_options":{"user":"","password":"","port":"","host":""},"sqlite_options":{"filename":""},"directPGURI_options":{"connectionString":""}}
{"mysql_options":{"user":"root","password":"","port":"3306"},"pg_options":{"user":"postgres","password":"","port":"5434"},"rds_mysql_options":{"user":"","password":"","port":"","host":""},"rds_pg_options":{"user":"","password":"","port":"","host":""},"sqlite_options":{"filename":""},"directPGURI_options":{"connectionString":""}}

0 comments on commit f816576

Please sign in to comment.