Skip to content

Commit

Permalink
Merge pull request #1 from yadavnarun/main
Browse files Browse the repository at this point in the history
app dist
  • Loading branch information
hxyro authored Apr 10, 2022
2 parents ade9328 + d3c334a commit 45780a4
Show file tree
Hide file tree
Showing 54 changed files with 31,366 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VUE_APP_CLUSTER_URL="http://127.0.0.1:8899"
1 change: 1 addition & 0 deletions app/.env.devnet
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VUE_APP_CLUSTER_URL="https://api.devnet.solana.com"
23 changes: 23 additions & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.DS_Store
node_modules
/dist


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

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

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
24 changes: 24 additions & 0 deletions app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# app

## Project setup
```
npm install
```

### Compiles and hot-reloads for development
```
npm run serve
```

### Compiles and minifies for production
```
npm run build
```

### Lints and fixes files
```
npm run lint
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
5 changes: 5 additions & 0 deletions app/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}
19 changes: 19 additions & 0 deletions app/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"baseUrl": "./",
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
}
}
Loading

0 comments on commit 45780a4

Please sign in to comment.