-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Database: Added async error handling to all supported databases
- Loading branch information
1 parent
5060598
commit d95e71a
Showing
45 changed files
with
858 additions
and
299 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,7 +1,7 @@ | ||
{ | ||
"type": "module", | ||
"dependencies": { | ||
"@types/node": "^22.10.3", | ||
"@types/node": "^22.10.5", | ||
"source-map": "^0.7.4" | ||
} | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,8 +1,8 @@ | ||
{ | ||
"type": "module", | ||
"dependencies": { | ||
"@types/node": "^22.10.3", | ||
"electron": "^33.2.1", | ||
"@types/node": "^22.10.5", | ||
"electron": "^33.3.1", | ||
"node-fetch": "^3.3.2" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Copy this file to .env, uncomment the database(s) you want to use and set correct credentials | ||
# See ../Database/Database.md for instructions on installing databases | ||
|
||
SMALLJS_SQLITE="../Database/SQLite/smalljs.db" | ||
# SMALLJS_POSTGRES="postgres://postgres:password@localhost:5432/smalljs" | ||
# SMALLJS_MARIADB="mariadb://root:password@localhost:3307/smalljs?connectTimeout=0" | ||
# SMALLJS_MYSQL="mysql://root:password@localhost:3306/smalljs?connectTimeout=0" | ||
# SMALLJS_SQLITE="../Database/SQLite/smalljs.db" |
Oops, something went wrong.