Skip to content
This repository has been archived by the owner on Jun 22, 2022. It is now read-only.

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
leaanthony committed Apr 29, 2019
0 parents commit 550fc5d
Show file tree
Hide file tree
Showing 32 changed files with 12,908 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

# 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*
todos
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

<p align="center" style="text-align: center">
<img src="appicon.png" width="30%"><br/>
This repository contains the source code that accompanies the <a href="https://wails.app/tutorials/todo.html">Todo Tutorial</a> for the <a href="https://github.com/wailsapp/wails">Wails Framework</a>
</p>


Binary file added appicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions frontend/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# vue basic

## Project setup

```
npm install
```

### Compiles and hot-reloads for development

```
npm run serve
```

### Compiles and minifies for production

```
npm run build
```

### Run your tests

```
npm run test
```

### Lints and fixes files

```
npm run lint
```

### Customize configuration

See [Configuration Reference](https://cli.vuejs.org/config/).
5 changes: 5 additions & 0 deletions frontend/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/app'
]
}
1 change: 1 addition & 0 deletions frontend/dist/app.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions frontend/dist/app.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions frontend/dist/app.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions frontend/dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!DOCTYPE html><html><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><title>Vue App</title><link href=/app.css rel=preload as=style><link href=/app.js rel=preload as=script><link href=/app.css rel=stylesheet></head><body><div id=app></div><script src=/app.js></script></body></html>
Loading

0 comments on commit 550fc5d

Please sign in to comment.