Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sun-zhenxing/algo-code-mgr
https://github.com/sun-zhenxing/algo-code-mgr
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sun-zhenxing/algo-code-mgr
- Owner: Sun-ZhenXing
- Created: 2023-10-01T08:19:33.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-30T10:04:03.000Z (11 months ago)
- Last Synced: 2023-12-30T11:20:38.051Z (11 months ago)
- Language: Vue
- Size: 258 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt3 Question Bank Management
Building dynamically rendered MarkDown + Vue components using MDC.
TODO:
- [ ] Stop using server side highlighting
- [ ] Plugins
- [x] Support for math (KaTeX)
- [ ] Support for diagrams (Mermaid)
- [ ] Support for charts (ECharts)
- [ ] Components
- [x] Alert
- [ ] CodeGroup
- [ ] QuestionCard
- [ ] TagList
- [ ] Add Prisma ORM & MongoDB
- [ ] Add user auth (login, register, reset password, etc.)
- [ ] Add `docker-compose.yml` for deployment## 1. Environment dependencies
Requires `pnpm` 8+ and Node.js >= 16 installed:
```bash
npm i -g pnpm
```Or use `corepack` to install the latest version `pnpm`:
```bash
corepack prepare pnpm@latest --activate
```Install the dependencies:
```bash
pnpm i
```Upgrade all dependencies:
```bash
pnpm up
```Remove unneeded dependencies:
```bash
pnpm store prune
```## 2. Development Deployment
Develop:
```bash
pnpm dev
```Build:
```bash
pnpm build
```Static build:
```bash
pnpm generate
```