Skip to content

Latest commit

 

History

History
92 lines (60 loc) · 2.43 KB

README.md

File metadata and controls

92 lines (60 loc) · 2.43 KB

celeris-admin

celeris-admin - Opinionated Vite Starter Template

Mocking up web app with celeris-admin (speed)

English | 简体中文

Features

Coding Style

Recommended IDE Setup

Try it now!

GitHub Template

Create a repo from this template on GitHub.

Clone to local

npx degit kirklin/celeris-admin my-vite-app
cd my-vite-app
pnpm i

Usage

Development

Just run and visit http://localhost:8888

pnpm run dev

Build

To build the App, run

pnpm run build

And you will see the generated file in dist that ready to be served.

Deploy on Netlify

Go to Netlify and select your clone, OK along the way, and your App will be live in a minute.

Docker Production Build

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