https://github.com/mizhexiaoxiao/websiteguide
😃企业内部网址导航系统,基于Python+Django+Vue开发,具有网址导航、网址管理、用户管理等功能
https://github.com/mizhexiaoxiao/websiteguide
django django-ops django-rest-framework docker ops ops-admin ops-tools python3 vue website websiteguide
Last synced: 14 days ago
JSON representation
😃企业内部网址导航系统,基于Python+Django+Vue开发,具有网址导航、网址管理、用户管理等功能
- Host: GitHub
- URL: https://github.com/mizhexiaoxiao/websiteguide
- Owner: mizhexiaoxiao
- License: mit
- Created: 2021-02-07T03:21:33.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-06-30T03:40:40.000Z (almost 2 years ago)
- Last Synced: 2025-04-09T16:21:03.493Z (14 days ago)
- Topics: django, django-ops, django-rest-framework, docker, ops, ops-admin, ops-tools, python3, vue, website, websiteguide
- Language: Python
- Homepage:
- Size: 23.7 MB
- Stars: 201
- Watchers: 4
- Forks: 77
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
WebsiteGuide
WebsiteGuide网址导航系统主要用于企业记录和管理内部系统地址,具有网址增删改查、icon图标替换等功能,后续考虑增加rbac和其他功能,欢迎使用和交流~### 环境
- Python 3.6+
- Django 2.2.13
- Djangorestframework 3.12.2
- Node 12.20.1+
- Vue 2.0### 网址导航

### 支持批量添加

### 网址管理

### 用户管理

### 演示地址
导航页 http://demo.mizhexiao.top:8000/
管理后台 http://demo.mizhexiao.top:8000/admin
username:admin
password:admin@1234
### 快速开始
#### 方法一:dockerhub拉取镜像```sh
docker pull mizhexiaoxiao/websiteguide:latest
docker run -d --restart=always --name=websiteguide -p 8000:80 mizhexiaoxiao/websiteguide
```#### 方法二:dockerfile构建镜像
##### docker安装(版本17.05+)```sh
yum install -y docker-ce
systemctl start docker
```##### 构建镜像
```sh
git clone https://github.com/mizhexiaoxiao/WebDockerfile.git
cd WebDockerfile
docker build --no-cache . -t websiteguide
```##### 启动容器
```sh
docker run -d --restart=always --name=websiteguide -p 8000:80 websiteguide
```##### 访问
浏览器打开http://localhost:8000
管理后台http://localhost:8000/admin
username:admin
password:admin@1234
##### 数据备份与恢复
备份
/usr/bin/docker cp 63dd67259f9d:/WebsiteGuide/db.sqlite3 /opt/deploy/bak/db.sqlite3
/usr/bin/docker cp 63dd67259f9d:/WebsiteGuide/websiteapp/media opt/deploy/bak/icon
恢复
/usr/bin/docker cp /opt/deploy/bak/db.sqlite3 63dd67259f9d:/WebsiteGuide/db.sqlite3
/usr/bin/docker cp /opt/deploy/bak/icon 63dd67259f9d:/WebsiteGuide/websiteapp/media
/usr/bin/docker restart 63dd67259f9d
### 有任何问题请提issue