https://github.com/doroudi/yummyadmin
📈 Vue 3 Dashboard template based on NaiveUI
https://github.com/doroudi/yummyadmin
admin admin-dashboard admin-panel dashboard naive-ui naiveui pinia template vue3 vuejs
Last synced: 4 months ago
JSON representation
📈 Vue 3 Dashboard template based on NaiveUI
- Host: GitHub
- URL: https://github.com/doroudi/yummyadmin
- Owner: doroudi
- License: mit
- Created: 2023-08-28T07:12:41.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-29T20:04:44.000Z (11 months ago)
- Last Synced: 2024-11-29T21:19:40.174Z (11 months ago)
- Topics: admin, admin-dashboard, admin-panel, dashboard, naive-ui, naiveui, pinia, template, vue3, vuejs
- Language: Vue
- Homepage: https://yummy-admin.netlify.app
- Size: 1.82 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Yummy Admin
[](https://github.com/doroudi/YummyAdmin/actions/workflows/ci.yml)
[](https://app.netlify.com/sites/yummy-admin/deploys)
[](https://techforpalestine.org/learn-more)Free Vue Admin Panel based on Naive UI and TailwindCss. fairly completed with beautiful design,RTL support and multilingual, State management using Pinia, TypeScript, MockServiceWorker, Cypress and easily Customizable.

🌏 Live Demo
🌑 Dark Mode
Other languages
🇨🇳 Chines |
🇮🇷 Persian |
🇸🇦 Arabic |
🇹🇷 Turkish |
🇩🇪 Germany
## Features
- ⚡️ [Vue 3](https://github.com/vuejs/core), [Vite](https://github.com/vitejs/vite), [pnpm](https://pnpm.io/), [esbuild](https://github.com/evanw/esbuild) - born with fastness
- 🛒 eCommerce ready sections (products, category, orders, customers)- 🎭 Supporting MockServiceWorker(MSW) and FakerJs to get production like data
- 🗂 File based routing- 📦 Components auto importing
- 🍍 [State Management via Pinia](https://pinia.vuejs.org/)
- 📑 Layout system
- 🌍 MultiLanguage support using I18n
- ⚙️ Unit Testing with [Vitest](https://github.com/vitest-dev/vitest), E2E Testing with [Cypress](https://cypress.io/) on [GitHub Actions](https://github.com/features/actions)
- ☁️ Deploy on Netlify, zero-config
## Try it now!
> Yummy Admin requires Node >=18.18
### Clone to local
```bash
npx degit https://github.com/doroudi/yummyadmin yummy-admin
cd yummy-admin
pnpm i # If you don't have pnpm installed, run: npm install -g pnpm
```## Checklist
When you use this template, try follow the checklist to update your info properly
- [ ] Change the author name in `LICENSE`
- [ ] Change the title in `locales/en.yaml`
- [ ] Change the hostname in `vite.config.ts`
- [ ] Change the favicon in `public`
- [ ] Remove the `.github` folder which contains the funding info
- [ ] Clean up the READMEs and remove routesAnd, enjoy :)
### Development
Just run and visit http://localhost:7000
```bash
pnpm dev
```### Build
To build the App, run
```bash
pnpm build
```And you will see the generated file in `dist` that ready to be served.
### Deploy on Netlify
Go to [Netlify](https://app.netlify.com/start) and select your clone, `OK` along the way, and your App will be live in a minute.
```bash
docker buildx build . -t yummyadmin:latest
```Run the image and specify port mapping with the `-p` flag.
```bash
docker run --rm -it -p 8080:80 yummyadmin:latest
```