-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from NCAR/properties
fixed authentication bug
- Loading branch information
Showing
5 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
MYSQL_ROOT_PASSWORD=chemistrycafefall24 # Change to your desired root password | ||
MYSQL_DATABASE=chemistry_db # Replace with your database name | ||
MYSQL_USER=chemistrycafedev # Replace with your MySQL username | ||
MYSQL_PASSWORD=chemistrycafe # Replace with your MySQL password | ||
MYSQL_PASSWORD=chemistrycafe # Replace with your MySQL password |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -798,6 +798,7 @@ INSERT IGNORE INTO users (id, username, role, email) VALUES | |
(UUID(), 'Joshua Hare', 'admin', '[email protected]'), | ||
(UUID(), 'Nishka Mittal', 'admin', '[email protected]'), | ||
(UUID(), 'Sydney Ferris', 'admin', '[email protected]'), | ||
(UUID(), 'Britt Schiller', 'admin', '[email protected]'), | ||
(UUID(), 'Kyle Shores', 'admin', '[email protected]'); | ||
|
||
-- Link users to mechanisms | ||
|