-
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.
Now the Square Keep Alive saves the application log
- Loading branch information
josejooj
committed
Oct 21, 2023
1 parent
94a394b
commit 88d32fa
Showing
3 changed files
with
21 additions
and
12 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,5 +1,13 @@ | ||
.env | ||
package-lock.json | ||
|
||
# folders | ||
|
||
node_modules | ||
dist | ||
*.zip | ||
logs | ||
|
||
# files | ||
|
||
.env | ||
package-lock.json | ||
*.zip | ||
*.log |
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,9 +1,4 @@ | ||
type Status = { | ||
id: string, | ||
cpu: string, | ||
ram: string, | ||
running: boolean | ||
} | ||
|
||
|
||
export { | ||
Status | ||
|