# element-django **Repository Path**: django-extend/element-django ## Basic Information - **Project Name**: element-django - **Description**: Django Admin 前端框架 (使用ElementUI-Admin实现) - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-07-22 - **Last Updated**: 2022-05-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [English](./README.md) | 简体中文

Element-Django

Django Admin 的前端框架. 使用Element书写
### 后端依赖 > 后端依赖 django-admin-api. > > 需要先按照`django-admin-api`的向导建立一个后端项目(假设后端服务已经成功运行在http://localhost:8000) ### 前端项目安装 - 克隆仓库 ```bash git clone https://github.com/django-extend/element-django.git my-project cd my-project ``` github不稳定的话,国内可使用码云仓库 ``` git clone https://gitee.com/django-extend/element-django.git my-project ``` - 安装依赖 ``` npm install --registry=https://registry.npm.taobao.org ``` 也可尝试使用cnpm安装 ``` npm install -g cnpm --registry=https://registry.npm.taobao.org cnpm install ``` - 编译并运行(开发环境) ``` npm run dev ```