{"id":13521318,"url":"https://github.com/mizhexiaoxiao/WebsiteGuide","last_synced_at":"2025-03-31T20:31:09.907Z","repository":{"id":54559543,"uuid":"336690945","full_name":"mizhexiaoxiao/WebsiteGuide","owner":"mizhexiaoxiao","description":"😃企业内部网址导航系统，基于Python+Django+Vue开发，具有网址导航、网址管理、用户管理等功能","archived":false,"fork":false,"pushed_at":"2023-06-30T03:40:40.000Z","size":24870,"stargazers_count":201,"open_issues_count":8,"forks_count":77,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-03-26T11:05:18.416Z","etag":null,"topics":["django","django-ops","django-rest-framework","docker","ops","ops-admin","ops-tools","python3","vue","website","websiteguide"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mizhexiaoxiao.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2021-02-07T03:21:33.000Z","updated_at":"2025-03-22T10:01:53.000Z","dependencies_parsed_at":"2024-01-13T21:42:35.306Z","dependency_job_id":"71601813-f98e-46c0-9e39-03c3fcd90fd8","html_url":"https://github.com/mizhexiaoxiao/WebsiteGuide","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mizhexiaoxiao%2FWebsiteGuide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mizhexiaoxiao%2FWebsiteGuide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mizhexiaoxiao%2FWebsiteGuide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mizhexiaoxiao%2FWebsiteGuide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mizhexiaoxiao","download_url":"https://codeload.github.com/mizhexiaoxiao/WebsiteGuide/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246535833,"owners_count":20793331,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django","django-ops","django-rest-framework","docker","ops","ops-admin","ops-tools","python3","vue","website","websiteguide"],"created_at":"2024-08-01T06:00:32.674Z","updated_at":"2025-03-31T20:31:09.438Z","avatar_url":"https://github.com/mizhexiaoxiao.png","language":"Python","readme":"\u003ch1 align=\"center\"\u003eWebsiteGuide\u003c/h1\u003e\n\n\u003cdiv align=\"center\"\u003eWebsiteGuide网址导航系统主要用于企业记录和管理内部系统地址，具有网址增删改查、icon图标替换等功能，后续考虑增加rbac和其他功能，欢迎使用和交流~\u003c/div\u003e\n\n\n\n### 环境\n\n- Python 3.6+\n- Django 2.2.13\n- Djangorestframework 3.12.2\n- Node 12.20.1+\n- Vue 2.0\n\n### 网址导航\n\n![image](https://github.com/mizhexiaoxiao/WebsiteGuide/blob/main/websiteapp/media/sample-picture/5.jpg)\n\n### 支持批量添加\n\n![image](https://github.com/mizhexiaoxiao/WebsiteGuide/blob/main/websiteapp/media/sample-picture/6.jpg)\n\n### 网址管理\n\n![image](https://github.com/mizhexiaoxiao/WebsiteGuide/blob/main/websiteapp/media/sample-picture/7.jpg)\n\n### 用户管理\n\n![image](https://github.com/mizhexiaoxiao/WebsiteGuide/blob/main/websiteapp/media/sample-picture/8.jpg)\n\n### 演示地址\n\n导航页 http://demo.mizhexiao.top:8000/\n\n管理后台 http://demo.mizhexiao.top:8000/admin\n\nusername：admin\n\npassword：admin@1234\n\n### 快速开始\n#### 方法一：dockerhub拉取镜像\n\n```sh\ndocker pull mizhexiaoxiao/websiteguide:latest \ndocker run -d --restart=always --name=websiteguide -p 8000:80 mizhexiaoxiao/websiteguide\n```\n\n#### 方法二：dockerfile构建镜像\n##### docker安装(版本17.05+)\n\n```sh\nyum install -y docker-ce\nsystemctl start docker\n```\n\n##### 构建镜像\n\n```sh\ngit clone https://github.com/mizhexiaoxiao/WebDockerfile.git\ncd WebDockerfile\ndocker build --no-cache . -t websiteguide\n```\n\n##### 启动容器\n\n```sh\ndocker run -d --restart=always --name=websiteguide -p 8000:80 websiteguide\n```\n\n##### 访问\n\n浏览器打开http://localhost:8000\n\n管理后台http://localhost:8000/admin\n\nusername：admin\n\npassword：admin@1234\n\n##### 数据备份与恢复\n\n备份\n\n/usr/bin/docker cp 63dd67259f9d:/WebsiteGuide/db.sqlite3 /opt/deploy/bak/db.sqlite3\n\n/usr/bin/docker cp 63dd67259f9d:/WebsiteGuide/websiteapp/media opt/deploy/bak/icon\n\n恢复\n\n/usr/bin/docker cp /opt/deploy/bak/db.sqlite3 63dd67259f9d:/WebsiteGuide/db.sqlite3\n\n/usr/bin/docker cp /opt/deploy/bak/icon 63dd67259f9d:/WebsiteGuide/websiteapp/media\n\n/usr/bin/docker restart 63dd67259f9d\n\n### 有任何问题请提issue\n","funding_links":[],"categories":["优秀项目"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmizhexiaoxiao%2FWebsiteGuide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmizhexiaoxiao%2FWebsiteGuide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmizhexiaoxiao%2FWebsiteGuide/lists"}