Skip to content
This repository has been archived by the owner on Nov 2, 2019. It is now read-only.

Commit

Permalink
FIX: Issue #5
Browse files Browse the repository at this point in the history
  • Loading branch information
junhoyeo committed Jan 7, 2019
1 parent 7c8e061 commit 8cbb4f2
Show file tree
Hide file tree
Showing 27 changed files with 8,021 additions and 8,732 deletions.
12 changes: 0 additions & 12 deletions Web/.babelrc

This file was deleted.

9 changes: 0 additions & 9 deletions Web/.editorconfig

This file was deleted.

23 changes: 0 additions & 23 deletions Web/.eslintrc.js

This file was deleted.

9 changes: 8 additions & 1 deletion Web/.gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
.DS_Store
node_modules/
/dist/
/dist

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

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
Expand All @@ -12,3 +18,4 @@ yarn-error.log*
*.ntvs*
*.njsproj
*.sln
*.sw*
10 changes: 0 additions & 10 deletions Web/.postcssrc.js

This file was deleted.

33 changes: 25 additions & 8 deletions Web/README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,29 @@
# Dimiwords-Web
Dimiwords Web App with Vue.js
# web2

## Setup API server URL
## Project setup
```
npm install
```

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

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

Change following code in `Web/src/main.js` to your running API server URL
### Run your tests
```
npm run test
```

```js
Vue.prototype.$http = axios.create({
baseURL: "http://localhost:3000/" // api server url
});
### Lints and fixes files
```
npm run lint
```

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

This file was deleted.

54 changes: 0 additions & 54 deletions Web/build/check-versions.js

This file was deleted.

Binary file removed Web/build/logo.png
Binary file not shown.
101 changes: 0 additions & 101 deletions Web/build/utils.js

This file was deleted.

22 changes: 0 additions & 22 deletions Web/build/vue-loader.conf.js

This file was deleted.

Loading

0 comments on commit 8cbb4f2

Please sign in to comment.