Skip to content

Commit

Permalink
Merge pull request #1044 from aeternity/release/v0.4.0
Browse files Browse the repository at this point in the history
Release 0.4.0
  • Loading branch information
mradkov authored Apr 12, 2021
2 parents 6e83277 + f159aab commit 61c204f
Show file tree
Hide file tree
Showing 196 changed files with 15,557 additions and 7,514 deletions.
6 changes: 6 additions & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,9 @@ VUE_APP_EXPLORER_URL=https://mainnet.aeternal.io
VUE_APP_COMPILER_URL=https://latest.compiler.aepps.com
VUE_APP_CONTRACT_V1_ADDRESS=ct_2AfnEfCSZCTEkxL5Yoi4Yfq6fF7YapHRaFKDJK3THMXMBspp5z
VUE_APP_CONTRACT_V2_ADDRESS=
VUE_APP_CONTRACT_V3_ADDRESS=ct_2Hyt9ZxzXra5NAzhePkRsDPDWppoatVD7CtHnUoHVbuehwR8Nb
VUE_APP_WORD_REGISTRY_ADDRESS=ct_2cYtnXKZE5BhuRMstJBEzvfmdZkrE5LooomcZ6XXzjfyEZPXCq
VUE_APP_BONDING_CURVE_18_DECIMALS_ADDRESS=
VUE_APP_IMGUR_API_CLIENT_ID=eafea0a779e4039
VUE_APP_GIPHY_API_KEY=P16yBDlSeEfcrJfp1rwnamtEZmQHxHNM
VUE_APP_WORDBAZAAR_ENABLED=
3 changes: 2 additions & 1 deletion .env.e2e
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
VUE_APP_BACKEND_URL=https://test-tipping.aeternity.art
VUE_APP_BACKEND_URL=https://testnet.superhero.aeternity.art
VUE_APP_NODE_URL=https://testnet.aeternity.io
VUE_APP_EXPLORER_URL=https://testnet.aeternal.io
VUE_APP_CONTRACT_V1_ADDRESS=ct_2GRP3xp7KWrKtZSnYfdcLnreRWrntWf5aTsxtLqpBHp71EFc3i
VUE_APP_CONTRACT_V2_ADDRESS=
VUE_APP_CONTRACT_V3_ADDRESS=ct_WscpdLQf6ZZxoVqrsEwUwmuAEdzEkJii5W5TzG84rVgHeK6BW
9 changes: 9 additions & 0 deletions .env.tnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
VUE_APP_BACKEND_URL=https://test-tipping.aeternity.art
VUE_APP_NODE_URL=https://testnet.aeternity.io
VUE_APP_MIDDLEWARE_URL=https://testnet.aeternity.io/mdw
VUE_APP_EXPLORER_URL=https://testnet.aeternal.io
VUE_APP_CONTRACT_V1_ADDRESS=ct_2Cvbf3NYZ5DLoaNYAU71t67DdXLHeSXhodkSNifhgd7Xsw28Xd
VUE_APP_CONTRACT_V2_ADDRESS=ct_2ZEoCKcqXkbz2uahRrsWeaPooZs9SdCv6pmC4kc55rD4MhqYSu
VUE_APP_CONTRACT_V3_ADDRESS=ct_WscpdLQf6ZZxoVqrsEwUwmuAEdzEkJii5W5TzG84rVgHeK6BW
VUE_APP_WORD_REGISTRY_ADDRESS=ct_2sHzycCWkiyfZkCMoprn3Q7U8SQh3FYXp6iB1RAFVJy1pNWZAY
VUE_APP_WORDBAZAAR_ENABLED=true
39 changes: 39 additions & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Configuration for probot-stale - https://github.com/probot/stale

# Limit only for Pull Requests
only: pulls

# Number of days of inactivity before an Issue or Pull Request becomes stale
daysUntilStale: 7

# Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
daysUntilClose: 3

# Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled)
onlyLabels: []

# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
exemptLabels:
- priority/high

# Set to true to ignore issues in a project (defaults to false)
exemptProjects: false

# Set to true to ignore issues in a milestone (defaults to false)
exemptMilestones: false

# Set to true to ignore issues with an assignee (defaults to false)
exemptAssignees: false

# Label to use when marking as stale
staleLabel: stale

# Comment to post when marking as stale. Set to `false` to disable
markComment: >
This pull request has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Limit the number of actions per hour, from 1-30. Default is 30
limitPerRun: 30
48 changes: 48 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Test, build, and deploy
on: [push, pull_request]
jobs:
main:
runs-on: ubuntu-latest
env:
APP_NAME: aggregator
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14.x
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- run: npm ci
- run: npm test
- run: npm run build -- --report

- run: cp ./dist/index.html ./dist/404.html
- name: Deploy to production
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/master'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: dist
cname: superhero.com
- uses: rlespinasse/[email protected]

- name: Deploy to stage
uses: easingthemes/[email protected]
if: github.event_name == 'push'
env:
SSH_PRIVATE_KEY: ${{ secrets.STAGE_PRIVATE_KEY }}
SOURCE: dist/
REMOTE_HOST: z52da5wt.xyz
REMOTE_USER: root
REMOTE_PORT: 2022
TARGET: ${{ format('/data/{0}/{1}', env.APP_NAME, env.GITHUB_REF_SLUG_URL) }}
- uses: unsplash/comment-on-pr@85a56be792d927ac4bfa2f4326607d38e80e6e60
if: github.event_name == 'pull_request'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HOST: ${{ format('{0}.{1}.z52da5wt.xyz', env.GITHUB_HEAD_REF_SLUG_URL, env.APP_NAME) }}
with:
msg: Deployed to [${{ env.HOST }}](https://${{ env.HOST }}), [bundle report](https://${{ env.HOST }}/report.html)
check_for_duplicate_msg: true
29 changes: 0 additions & 29 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 61c204f

Please sign in to comment.