Commit 88449b98 authored by Sonia Zorba's avatar Sonia Zorba Committed by zonia3000
Browse files

Initial commit. Added GMS UI.

parents
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+21 −0
Original line number Diff line number Diff line
.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?
+1 −0
Original line number Diff line number Diff line
VUE_APP_API_CLIENT = 'mock'

gms-ui/.env.production

0 → 100644
+1 −0
Original line number Diff line number Diff line
VUE_APP_API_CLIENT = 'server'

gms-ui/README.md

0 → 100644
+29 −0
Original line number Diff line number Diff line
# gms-ui

## 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/).

gms-ui/babel.config.js

0 → 100644
+11 −0
Original line number Diff line number Diff line
module.exports = {
  "presets": [
    [
      "@vue/app",
      {
        "useBuiltIns": "entry"
      }
    ]
  ]
}
 No newline at end of file