-
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.
- Loading branch information
Showing
11 changed files
with
9,857 additions
and
10,673 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,27 @@ | ||
# Account with money | ||
SEED=//Alice | ||
|
||
# Url where to contact by api | ||
REST_URL=https://rest.opal.uniquenetwork.dev/v1 | ||
|
||
# telegram token for bot | ||
TELEGRAM_TOKEN=<telegram:token> | ||
|
||
# How much money to give out at a time | ||
DROP_AMOUNT=100 | ||
|
||
# How often can you request money | ||
CACHE_TTL=30 | ||
|
||
# A list of admin addresses, separated by "," - optional | ||
ADMIN_ADDRESSES= | ||
|
||
# redis part - optional | ||
# host to connect redis | ||
REDIS_HOST= | ||
|
||
# port to connect redis, default 6379 | ||
REDIS_PORT= | ||
|
||
# redis database number, default 0 | ||
REDIS_DB= |
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,17 @@ | ||
name: Deploy to Develop cluster | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
|
||
jobs: | ||
run-gitlab-pipeline: | ||
name: Run gitlab pipeline | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger gitlab | ||
uses: wei/curl@v1 | ||
with: | ||
args: -X POST -F token=${{ secrets.UNIQUE_GITLAB_TOKEN }} -F ref=master -F variables[REMOTE_COMMIT]=${GITHUB_SHA} -F variables[DEPLOY_TO]=dev https://gitlab.uniquenetwork.dev/api/v4/projects/63/trigger/pipeline |
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,14 @@ | ||
name: Deploy to Prod Opal cluster | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
run-gitlab-pipeline: | ||
name: Run gitlab pipeline | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger gitlab | ||
uses: wei/curl@v1 | ||
with: | ||
args: -X POST -F token=${{ secrets.UNIQUE_GITLAB_TOKEN }} -F ref=master -F variables[REMOTE_COMMIT]=${GITHUB_SHA} -F variables[DEPLOY_TO]=prod-opal https://gitlab.uniquenetwork.dev/api/v4/projects/63/trigger/pipeline |
Oops, something went wrong.