https://github.com/nitrocode/simple-frontend-vue
https://github.com/nitrocode/simple-frontend-vue
docker vue vuejs vuejs2
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nitrocode/simple-frontend-vue
- Owner: nitrocode
- Created: 2019-10-25T05:16:42.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-10T16:59:43.000Z (over 4 years ago)
- Last Synced: 2025-06-16T11:06:25.858Z (7 months ago)
- Topics: docker, vue, vuejs, vuejs2
- Language: Vue
- Size: 3.13 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Frontend with Vue
Used Vue.js to display data from an API end point.

## Project setup
npm install
npm run serve
## Docker run
docker run -p 8080:8080 -d drianthoderyme/simple-frontend-vue
Then go to https://localhost:8080
## Docker dev
docker build -t drianthoderyme/simple-frontend-vue .
docker push drianthoderyme/simple-frontend-vue
## TODO
High priority
* to split up my Vue code in multiple components
* clicking on a card shows a popup with an X to kill it or click away to kill it
* for each author, show icon and be able to click icon to only see tickets assigned to that icon
* use a search input box to filter for any task fields
Medium priority
* convert from js to typescript
* convert html to pug
Low priority
* use gRPC proto for /v1/tasks api endpoint
* instead of using the odd `vue.config.js` to serve the tasks, have a separate backend server do it