-
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.
Internal API to get and save the list of Applications (#297)
* applications list and save API Signed-off-by: marcopiraccini <[email protected]> * version bump 0.9.0 Signed-off-by: marcopiraccini <[email protected]> --------- Signed-off-by: marcopiraccini <[email protected]>
- Loading branch information
1 parent
e51a650
commit b513d3f
Showing
11 changed files
with
6,846 additions
and
3,690 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 |
---|---|---|
|
@@ -17,5 +17,6 @@ jobs: | |
with: | ||
node-version: 18 | ||
- run: npm ci | ||
- run: npm run fix-node-deps | ||
- run: npm run test | ||
|
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
CREATE TABLE IF NOT EXISTS applications ( | ||
id INTEGER PRIMARY KEY, | ||
name VARCHAR(255) NOT NULL, | ||
path VARCHAR(255) NOT NULL, | ||
created_at timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
updated_at timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP | ||
); |
Oops, something went wrong.