-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/varun-doshi/shinigami
- Loading branch information
Showing
169 changed files
with
28,155 additions
and
5,016 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
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 |
---|---|---|
|
@@ -16,3 +16,4 @@ node_modules/ | |
|
||
# Development | ||
**/TODO | ||
.vscode |
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 +1 @@ | ||
scarb 2.6.3 | ||
scarb 2.8.2 |
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,26 @@ | ||
build: build-cairo | ||
test: test-cairo test-core | ||
|
||
build-cairo: | ||
@echo "Building cairo code..." | ||
scarb build | ||
|
||
test-cairo: | ||
@echo "Testing cairo code..." | ||
scarb test | ||
|
||
test-core: | ||
@echo "Running bitcoin-core tests..." | ||
@./tests/run-core-tests.sh 0 1207 | ||
|
||
docker-build: | ||
$(eval COMMIT_SHA := $(shell git rev-parse --short HEAD)) | ||
@echo "Building docker images with version $(COMMIT_SHA)" | ||
@echo "Building backend..." | ||
docker build . -f backend/Dockerfile -t "brandonjroberts/shinigami-backend:$(COMMIT_SHA)" | ||
|
||
docker-push: | ||
$(eval COMMIT_SHA := $(shell git rev-parse --short HEAD)) | ||
@echo "Pushing docker images with version $(COMMIT_SHA)" | ||
@echo "Pushing backend..." | ||
docker push "brandonjroberts/shinigami-backend:$(COMMIT_SHA)" |
Oops, something went wrong.