Skip to content

Commit 9666c40

Browse files
committed
Add static UI
1 parent 269127a commit 9666c40

25 files changed

Lines changed: 22046 additions & 0 deletions

ui/.env.local

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VUE_APP_ROOT_API=http://localhost:8080/api/ui

ui/.env.production

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VUE_APP_ROOT_API=/api/ui

ui/.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/lib
2+
/lib-legacy
3+
/node_modules
4+
*.log
5+
/.nyc_output
6+
/coverage
7+
/dist
8+
/dist-debug
9+
/artifacts
10+
/updates
11+
/resources/winsetup/generated.wxs
12+
/resources/winsetup/obj
13+
/resources/winsetup/bin
14+
/resources/win-chocolatey/tools/chocolateyinstall.ps1
15+
.vs
16+
*.msi
17+
*.nupkg
18+
test/fixtures/**/.fbkpm
19+
/tmp/
20+
/__tests__/fixtures/**/_*
21+
/__tests__/fixtures/request-cache/GET/localhost/.bin
22+
.idea
23+
.yarn-meta
24+
.pnp.js
25+
.pnp
26+
/packages/lockfile/index.js
27+
.vscode/

ui/README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# feast-dashboard
2+
3+
## Project setup
4+
5+
1. Install [node](https://nodejs.org/en/download/)
6+
2. Install [yarn](https://yarnpkg.com/lang/en/docs/install/)
7+
3. Go to `ui` directory and run:
8+
9+
```
10+
yarn install
11+
```
12+
13+
## Development
14+
15+
Compiles and hot-reloads for development:
16+
17+
```
18+
yarn run serve
19+
```
20+
21+
Compiles and minifies for production:
22+
23+
```
24+
yarn run build
25+
```
26+
27+
Lints and fixes files:
28+
29+
```
30+
yarn run lint
31+
```

ui/babel.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/app'
4+
]
5+
};

0 commit comments

Comments
 (0)