Files
hongshu-web/README.md

37 lines
1.3 KiB
Markdown
Raw Permalink Normal View History

2024-07-03 16:56:33 +08:00
<p align="center">
2024-07-03 17:40:42 +08:00
<img alt="logo" src="https://image.mayongjian.cn/2024/07/03/1de3ee08e0a34ab6bf9a163d380fb596.png" style="width: 100px">
2024-07-03 16:56:33 +08:00
</p>
<h1 align="center" style="margin: 30px 0 30px; font-weight: bold;">HongShu v1.0</h1>
2024-09-07 19:54:37 +08:00
<h4 align="center">基于 SpringBoot + Vue 前后端分离的仿小红书项目</h4>
2024-07-03 16:56:33 +08:00
<p align="center">
<a href="https://gitee.com/Maverick_Ma/hongshu-web/stargazers">
<img src="https://gitee.com/Maverick_Ma/hongshu-web/badge/star.svg?theme=dark"></a>
<a href="https://gitee.com/Maverick_Ma/hongshu-web">
<img src="https://img.shields.io/badge/HongShu-v1.0-brightgreen.svg"></a>
<a href="https://gitee.com/Maverick_Ma/hongshu-web/blob/master/LICENSE">
<img src="https://img.shields.io/github/license/mashape/apistatus.svg"></a>
</p>
2024-07-03 08:02:40 +00:00
2024-07-03 16:56:33 +08:00
## 平台简介
2025-01-20 17:49:40 +08:00
* 本仓库为红薯用户端:前端技术栈 [Vue3](https://v3.cn.vuejs.org) + [Element Plus](https://element-plus.org/zh-CN) + [ts](https://www.tslang.cn) 版本。
2024-07-03 17:03:33 +08:00
* 配套后端代码仓库地址 [HongShu](https://gitee.com/Maverick_Ma/hongshu.git)
2024-07-03 08:02:40 +00:00
2024-07-03 16:56:33 +08:00
## 前端运行
```bash
# 克隆项目
git clone https://gitee.com/Maverick_Ma/hongshu-web.git
2024-07-03 08:02:40 +00:00
2024-07-03 16:56:33 +08:00
# 进入项目目录
cd hongshu-web
2024-07-03 08:02:40 +00:00
2024-07-03 16:56:33 +08:00
# 安装依赖
2025-01-20 17:49:40 +08:00
npm install
2024-07-03 08:02:40 +00:00
2024-07-03 16:56:33 +08:00
# 启动服务
2025-01-20 17:49:40 +08:00
run run dev
2024-07-03 08:02:40 +00:00
2024-07-03 16:56:33 +08:00
# 构建测试环境 yarn build:stage
# 构建生产环境 yarn build:prod
# 前端访问地址 http://localhost:80
```