Skip to content

Commit

Permalink
Token
Browse files Browse the repository at this point in the history
  • Loading branch information
tachengshimengH committed Mar 6, 2019
0 parents commit 3f4ab7c
Show file tree
Hide file tree
Showing 27 changed files with 14,615 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.DS_Store
node_modules
/dist
/dist-old

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# lbtc-token-explorer-testnet

## Project setup

To clone and run this repository you'll need [Git](https://git-scm.com) and [Node.js](https://nodejs.org/en/download/) (which comes with [npm](http://npmjs.com)) installed on your computer. From your command line:

```
# Clone Repository
git clone https://github.com/lbtcio/lbtc-token-explorer.git
# Go into the repository
cd lbtc-token-explorer
# Install dependencies
npm install
# Compiles and hot-reloads for development
npm run serve
# Compiles and minifies for production
npm run build
```

Finally, copy the files in the `dist` folder to your own server.
5 changes: 5 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/app'
]
}
Loading

0 comments on commit 3f4ab7c

Please sign in to comment.