{"id":23041263,"url":"https://github.com/thanthtooaung-coding/cafe-management-system-frontend","last_synced_at":"2026-03-20T00:19:28.199Z","repository":{"id":255986761,"uuid":"854046796","full_name":"thanthtooaung-coding/Cafe-Management-System-Frontend","owner":"thanthtooaung-coding","description":"Cafe Management System - Frontend (Vue.js)","archived":false,"fork":false,"pushed_at":"2024-09-11T10:21:54.000Z","size":71,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-03T00:41:24.292Z","etag":null,"topics":["axios-vue","vue3"],"latest_commit_sha":null,"homepage":"","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thanthtooaung-coding.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-08T09:06:16.000Z","updated_at":"2024-10-04T20:22:33.000Z","dependencies_parsed_at":"2024-12-15T19:33:01.871Z","dependency_job_id":"8e19005b-72e3-4523-be94-6cde18ab885b","html_url":"https://github.com/thanthtooaung-coding/Cafe-Management-System-Frontend","commit_stats":null,"previous_names":["thanthtooaung-coding/cafe-management-system-frontend"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thanthtooaung-coding/Cafe-Management-System-Frontend","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thanthtooaung-coding%2FCafe-Management-System-Frontend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thanthtooaung-coding%2FCafe-Management-System-Frontend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thanthtooaung-coding%2FCafe-Management-System-Frontend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thanthtooaung-coding%2FCafe-Management-System-Frontend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thanthtooaung-coding","download_url":"https://codeload.github.com/thanthtooaung-coding/Cafe-Management-System-Frontend/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thanthtooaung-coding%2FCafe-Management-System-Frontend/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28519880,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T22:11:28.393Z","status":"ssl_error","status_checked_at":"2026-01-17T22:11:27.841Z","response_time":85,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["axios-vue","vue3"],"created_at":"2024-12-15T19:32:12.520Z","updated_at":"2026-01-17T22:17:16.137Z","avatar_url":"https://github.com/thanthtooaung-coding.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cafe Management System - Frontend (Vue.js)\n\n## Project Overview\nThis is the frontend of the Cafe Management System, built with Vue.js to manage employees, orders, inventory, and customers.\n\n## Features\n- User Authentication\n- Role-based access control (Admin, Staff)\n- Order management\n- Employee and customer data handling\n\n## Recommended IDE Setup\n\n[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).\n\n## Customize configuration\n\nSee [Vite Configuration Reference](https://vitejs.dev/config/).\n\n## Project Setup\n\n```sh\nnpm install\n``` \n\n### Compile and Hot-Reload for Development\n\n```sh\nnpm run dev\n```\n\n### Compile and Minify for Production\n\n```sh\nnpm run build\n```\n\n### Folder Structure\n\n```sh\n/cafe-management-system\n├── /public\n│   ├── index.html\n│   └── favicon.ico\n├── /src\n│   ├── /assets                     # Images, fonts, and other assets\n│   │   └── logo.svg\n│   ├── /components                 # Reusable components\n│   │   ├── Sidebar.vue\n│   │   ├── SidebarGroup.vue\n│   │   ├── SidebarLink.vue\n│   │   ├── SidebarDropdown.vue\n│   │   ├── /orders                 # Components related to orders\n│   │   │   ├── OrderAddForm.vue\n│   │   │   └── OrderEditForm.vue\n│   │   ├── /products               # Components related to products\n│   │   │   ├── ProductAddForm.vue\n│   │   │   └── ProductEditForm.vue\n│   │   └── /customers              # Components related to customers\n│   │       ├── CustomerAddForm.vue\n│   │       └── CustomerEditForm.vue\n│   ├── /layouts                    # Layout components (e.g., MainLayout, AuthLayout)\n│   │   └── MainLayout.vue\n│   ├── /views                      # Page components (each representing a route)\n│   │   ├── HomeView.vue\n│   │   ├── DashboardView.vue\n│   │   ├── OrdersView.vue\n│   │   └── ProductsView.vue\n│   ├── /router                     # Vue Router configuration\n│   │   └── index.js\n│   ├── /store                      # Vuex store (state management)\n│   │   └── index.js\n│   ├── /services                   # API service files\n│   │   └── ApiService.js\n│   ├── /utils                      # Utility functions\n│   │   └── helpers.js\n│   ├── /styles                     # Global and component-specific styles\n│   │   └── global.css\n│   ├── App.vue                     # Main Vue component\n│   └── main.js                     # Entry file\n├── /tests                          # Unit and integration tests\n│   └── example.test.js\n├── .env                            # Environment variables\n├── .gitignore                      # Git ignore file\n├── package.json                    # npm package configuration\n└── README.md                       # Documentation\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthanthtooaung-coding%2Fcafe-management-system-frontend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthanthtooaung-coding%2Fcafe-management-system-frontend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthanthtooaung-coding%2Fcafe-management-system-frontend/lists"}