Mocking up web app with celeris-admin (speed)
- ⚡ Vue 3, Vite 2, pnpm - born with fastness
- 💪 Typescript - of course! necessary
- 🔥 Use the new
<script setup>
syntax - 🤙🏻 Reactivity Transform enabled
- 📦 Components auto importing
- 📥 APIs auto importing - use Composition API and others directly
- 💡 Vue Router v4 - The official router for Vue.js
- 🎉 NProgress - Page loading progress feedback
- 🍍 State Management via Pinia - The Vue Store that you will enjoy using
- 📜 Chinese font preset
- 🌍 I18n ready
- ☁️ Deploy on Netlify, zero-config
Create a repo from this template on GitHub.
npx degit kirklin/celeris-admin my-vite-app
cd my-vite-app
pnpm i
Just run and visit http://localhost:8888
pnpm run dev
To build the App, run
pnpm run build
And you will see the generated file in dist
that ready to be served.
Go to Netlify and select your clone, OK
along the way, and your App will be live in a minute.
First, build the celeris-admin image by opening the terminal in the project's root directory.
docker buildx build . -t CelerisAdmin:latest
Run the image and specify port mapping with the -p
flag.
docker run --rm -it -p 8080:80 CelerisAdmin:latest