-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into 724fdependabot/npm_and_yarn/openapitools/open…
…api-generator-cli-2.13.4
- Loading branch information
Showing
709 changed files
with
62,216 additions
and
73,620 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@paybox/api": patch | ||
"@paybox/backend-common": patch | ||
--- | ||
|
||
feat: adds bitcoin keys support to account and fixes the tinysepka build issue |
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,10 @@ | ||
--- | ||
"@paybox/blockchain": patch | ||
"@paybox/common": patch | ||
"@paybox/api": patch | ||
"@paybox/backend-common": patch | ||
"@paybox/notif-worker": patch | ||
"@paybox/zeus": patch | ||
--- | ||
|
||
feat: adds token create endpoint and moves from pk to normal |
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,6 @@ | ||
--- | ||
"@paybox/common": patch | ||
"@paybox/api": patch | ||
--- | ||
|
||
feat: adds associated token account create endpoint |
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,5 @@ | ||
--- | ||
"@paybox/backend-common": patch | ||
--- | ||
|
||
feat: adds indexes on db tables and inits a rust api backend |
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,4 @@ | ||
--- | ||
|
||
--- | ||
|
||
feat: adding a solana token program |
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,10 +1,6 @@ | ||
// This configuration only applies to the package manager root. | ||
/** @type {import("eslint").Linter.Config} */ | ||
module.exports = { | ||
ignorePatterns: ["apps/**", "packages/**"], | ||
ignorePatterns: ["apps/**", "packages/**", "backend/**"], | ||
extends: ["@repo/eslint-config/library.js"], | ||
parser: "@typescript-eslint/parser", | ||
parserOptions: { | ||
project: true, | ||
}, | ||
}; |
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,43 @@ | ||
name: Deploy backend-indexer | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev | ||
paths: | ||
- 'backend/indexer/**' | ||
pull_request: | ||
branches: | ||
- dev | ||
paths: | ||
- 'backend/indexer/**' | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: "mv docker/indexer/Dockerfile ." | ||
|
||
- name: add secrets | ||
env: | ||
DOCKER_USER: ${{secrets.DOCKERHUB_USERNAME}} | ||
DOCKER_PASSWORD: ${{secrets.DOCKERHUB_TOKEN}} | ||
run: | | ||
cd backend/indexer | ||
touch .env | ||
printf 'INDEXER_PORT=%s\n' "${{secrets.INDEXER_PORT}}" >> .env | ||
printf 'INDEXER_KAFKA_URL=%s\n' "${{secrets.INDEXER_KAFKA_URL}}" >> .env | ||
printf 'INDEXER_KAFKA_ID=%s\n' "${{secrets.INDEXER_KAFKA_ID}}" >> .env | ||
cd ../.. | ||
- name: docker login | ||
env: | ||
DOCKER_USER: ${{secrets.DOCKERHUB_USERNAME}} | ||
DOCKER_PASSWORD: ${{secrets.DOCKERHUB_TOKEN}} | ||
run: | | ||
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD | ||
- name: Build the Docker image | ||
run: docker build . --tag shawakash/paybox-indexer:${{ github.sha }} | ||
|
||
- name: Docker Push | ||
run: docker push shawakash/paybox-indexer:${{ github.sha }} |
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Deploy backend-rs-api | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev | ||
paths: | ||
- "backend/rs_api/**" | ||
pull_request: | ||
branches: | ||
- dev | ||
paths: | ||
- "backend/rs_api/**" | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: "mv docker/rs_api/Dockerfile ." | ||
|
||
- name: add secrets | ||
env: | ||
DOCKER_USER: ${{secrets.DOCKERHUB_USERNAME}} | ||
DOCKER_PASSWORD: ${{secrets.DOCKERHUB_TOKEN}} | ||
run: | | ||
cd backend/rs_api | ||
touch .env | ||
printf 'PORT=%s\n' "8080" >> .env | ||
cd ../.. | ||
- name: docker login | ||
env: | ||
DOCKER_USER: ${{secrets.DOCKERHUB_USERNAME}} | ||
DOCKER_PASSWORD: ${{secrets.DOCKERHUB_TOKEN}} | ||
run: | | ||
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD | ||
- name: Build the Docker image | ||
run: docker build . --tag shawakash/paybox-rs-api:${{ github.sha }} | ||
|
||
- name: Docker Push | ||
run: docker push shawakash/paybox-rs-api:${{ github.sha }} |
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
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.