-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #109 from ixofoundation/develop
Develop -> Main
- Loading branch information
Showing
277 changed files
with
22,560 additions
and
2,946 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,11 +1,27 @@ | ||
PORT="8080" | ||
# express trust proxy config for if you are using a reverse proxy | ||
TRUST_PROXY=1 | ||
NODE_ENV=production | ||
|
||
SENTRYDSN= | ||
|
||
RPC= | ||
DATABASE_URL=postgresql://username:password@block-sync-db:5432/Blocksync?schema=public | ||
# database url for core database where seeding information from | ||
DATABASE_URL_CORE= | ||
|
||
# whether to migrate the database programatically or not, if set to true, the database will be migrated programatically | ||
# according to postgres/migrations, for prod environtments where dont have direct db access or dont want to connect to db directly. | ||
# Please note this has its own limitations, if this is used please dont modify the db schema manually at all, only rely on the | ||
# programatic migrations. | ||
# 1 = true, 0 = false | ||
MIGRATE_DB_PROGRAMATICALLY=1 | ||
# whether to use ssl for the database connection or not, for localhost db disable this | ||
# 1 = true, 0 = false | ||
DATABASE_USE_SSL=0 | ||
|
||
# optional endpoint to map entity ipfs service to when entity is resolved on blocksync | ||
IPFS_SERVICE_MAPPING="https://devnet-blocksync.ixo.earth/api/ipfs/" | ||
|
||
# entity module contract address to check cosmwasm events to index | ||
ENTITY_MODULE_CONTRACT_ADDRESS="ixo14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9sqa3vn7" |
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,13 @@ | ||
name: Build and Release | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
|
||
jobs: | ||
build-and-release: | ||
uses: ixofoundation/ixo-github-actions/.github/workflows/node-ci-build.yml@main | ||
with: | ||
commit_sha: ${{ github.sha }} | ||
secrets: inherit |
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 @@ | ||
name: Pull Request Build and Test | ||
on: | ||
pull_request: | ||
|
||
jobs: | ||
call-ci-workflow: | ||
uses: ixofoundation/ixo-github-actions/.github/workflows/node-ci-pr.yml@main |
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 @@ | ||
v18.15.0 | ||
v18.17.0 |
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,62 @@ | ||
{ | ||
"branches": [ | ||
"main", | ||
{ | ||
"name": "develop", | ||
"channel": "alpha", | ||
"prerelease": true | ||
}, | ||
{ | ||
"name": "test", | ||
"channel": "beta", | ||
"prerelease": true | ||
} | ||
], | ||
"ci": true, | ||
"preset": "conventionalcommits", | ||
"plugins": [ | ||
[ | ||
"@semantic-release/commit-analyzer", | ||
{ | ||
"releaseRules": [ | ||
{ "breaking": true, "release": "major" }, | ||
{ "type": "feat", "release": "minor" }, | ||
{ "type": "fix", "release": "patch" }, | ||
{ "type": "perf", "release": "patch" }, | ||
{ "type": "build", "release": "patch" }, | ||
{ "scope": "security", "release": "patch" }, | ||
{ "type": "chore", "release": false }, | ||
{ "type": "ci", "release": false }, | ||
{ "type": "docs", "release": false }, | ||
{ "type": "refactor", "release": false }, | ||
{ "type": "revert", "release": false }, | ||
{ "type": "style", "release": false }, | ||
{ "type": "test", "release": false }, | ||
{ "scope": "no-release", "release": false }, | ||
{ "scope": "release", "release": "patch" } | ||
], | ||
"presetConfig": true | ||
} | ||
], | ||
[ | ||
"@semantic-release/release-notes-generator", | ||
{ | ||
"presetConfig": true | ||
} | ||
], | ||
[ | ||
"@semantic-release/npm", | ||
{ | ||
"npmPublish": false | ||
} | ||
], | ||
[ | ||
"@semantic-release/git", | ||
{ | ||
"assets": ["package.json"], | ||
"message": "chore(release): ${nextRelease.version} [skip ci]\n${nextRelease.notes}" | ||
} | ||
], | ||
"@semantic-release/github" | ||
] | ||
} |
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
Large diffs are not rendered by default.
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
Oops, something went wrong.