Skip to content

Commit

Permalink
Merge pull request #2 from zenchainprotocol/Stargate_Token
Browse files Browse the repository at this point in the history
Stargate token
  • Loading branch information
ZenChainDev committed Apr 3, 2021
2 parents fb21f32 + d2fa05f commit 0cb9486
Show file tree
Hide file tree
Showing 1,481 changed files with 347,332 additions and 113,288 deletions.
5 changes: 0 additions & 5 deletions .dockerignore

This file was deleted.

39 changes: 39 additions & 0 deletions .github/workflows/build.yml
@@ -0,0 +1,39 @@
# This is a basic workflow that is manually triggered

name: zenchain

# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on: [push, pull_request]

# This workflow makes x86_64 binaries for mac, windows, and linux.

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [amd64, arm64]
targetos: [windows, darwin, linux]
name: zenchain ${{ matrix.arch }} for ${{ matrix.targetos }}
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v1
with:
go-version: 1.15
env:
GOOS: ${{ matrix.targetos }}
GOARCH: ${{ matrix.arch }}

- name: Compile
run: |
go mod download
cd cmd/zenchaind
go build .
- uses: actions/upload-artifact@v2
with:
name: zenchaind ${{ matrix.targetos }} ${{ matrix.arch }}
path: cmd/zenchaind/zenchaind

24 changes: 24 additions & 0 deletions .github/workflows/pages.yml
@@ -0,0 +1,24 @@
name: Build and Deploy
on: [push]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
with:
persist-credentials: false

- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
cd vue
npm install
npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: vue/dist # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch
74 changes: 3 additions & 71 deletions .gitignore
@@ -1,71 +1,3 @@
# OS
.DS_Store
*.swp
*.swo
*.swl
*.swm
*.swn
.vscode
.idea

# Build
vendor
build
tools/
tools/bin/*
examples/build/*
docs/_build
docs/tutorial
dist
tools-stamp
doc

# Data - ideally these don't exist
baseapp/data/*
client/lcd/keys/*
cmd/zenchaincli/statik/statik.go
mytestnet
doc/statik/statik.go
dev/cache
cmd/launch/launch
cmd/zenchaincli/zenchaincli
cmd/zenchaind/zenchaind
cmd/zenchaintool/zenchaintool
cmd/tiger/tiger
cmd/zenchaind/testnet_okchain.go
dev/testnet/cache
testnet_zenchain.go
tools


# Testing
coverage.txt
profile.out
profile.cov
profile_tmp.cov
coverage.html
unittest

# Vagrant
.vagrant/
*.box
*.log
*.json
vagrant

# IDE
.idea/
*.iml
*.yaml

# Graphviz
dependency-graph.png

# Latex
*.aux
*.out
*.synctex.gz
contract_tests/*
dev/cache/*
result.txt
ethermint
vue/node_modules
vue/dist
secret.yml
49 changes: 0 additions & 49 deletions CHANGELOG.md

This file was deleted.

29 changes: 0 additions & 29 deletions Dockerfile

This file was deleted.

134 changes: 0 additions & 134 deletions Makefile

This file was deleted.

0 comments on commit 0cb9486

Please sign in to comment.