All Projects → jweny → pocassistweb

jweny / pocassistweb

Licence: other
web ui of pocassist

Programming Languages

typescript
32286 projects
Less
1899 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to pocassistweb

epee-react-admin
🗡简洁、高效、易扩展的 React 快速开发模板,基于布局设计,纯 Hooks 开发,包含中后台应用常用功能
Stars: ✭ 87 (+278.26%)
Mutual labels:  antd
GOSH-FHIRworks2020-React-Dashboard
🩺 Fully Responsive FHIR Dashboard written using @reactjs for NHS and GOSH hackathon
Stars: ✭ 21 (-8.7%)
Mutual labels:  antd
cc-project-vue
一个基于vue3.0+antd+less+spring boot +mybatis+mysql+maven基础权限管理平台
Stars: ✭ 20 (-13.04%)
Mutual labels:  antd
animaris
Documentation and Mock for JSBridge base on ThinkJS & MongoDB & React & Antd.
Stars: ✭ 28 (+21.74%)
Mutual labels:  antd
react-vite-admin
This Starter utilizes React, Recoil, React Query, React Hooks, Typescript, Axios And Vite. 全新技术栈的后台管理系统
Stars: ✭ 90 (+291.3%)
Mutual labels:  antd
react-smart-app
Preconfiguration React + Ant Design + State Management
Stars: ✭ 13 (-43.48%)
Mutual labels:  antd
fishing-funds
基金,大盘,股票,虚拟货币状态栏显示小应用,基于Electron开发,支持MacOS,Windows,Linux客户端,数据源来自天天基金,蚂蚁基金,爱基金,腾讯证券,新浪基金等
Stars: ✭ 424 (+1743.48%)
Mutual labels:  antd
react-antd-low-code
简易版 react 低代码平台
Stars: ✭ 45 (+95.65%)
Mutual labels:  antd
gatsby-wordpress-typescript-scss-blog
Gatsby Wordpress Typescript Blog Boilerplate
Stars: ✭ 50 (+117.39%)
Mutual labels:  antd
react-weather-app
☀️🌤⛈❄️A weather web application using React, Redux, Typescript, Webpack, Ant Design, ECharts and firebase.
Stars: ✭ 117 (+408.7%)
Mutual labels:  antd
antdCascaderDate
202104最新更新,对于antd Cascader 内中国省市区数据的补充,数据基于 2020月12月中华人民共和国县以上行政区划代码,生成此数据的方法:https://github.com/heerey525/antdCascaderDateMethod
Stars: ✭ 158 (+586.96%)
Mutual labels:  antd
react-admin-template
react + antd + vite/webpack5 后台管理系统模板
Stars: ✭ 73 (+217.39%)
Mutual labels:  antd
trackupdates
A simple yaml-based xpath crawler framework for easy tracking site updates. https://zhupeng.github.io/
Stars: ✭ 20 (-13.04%)
Mutual labels:  antd
Deep-Viz-Website
The Deep-Viz Components' display website ( Base on React + Dva + Ant-Design) 组件库Deep-Viz的展示网站
Stars: ✭ 12 (-47.83%)
Mutual labels:  antd
react-admin-nest
React和Ant Design和 Nest.js 和 Mysql 构建的后台通用管理系统。持续更新。
Stars: ✭ 123 (+434.78%)
Mutual labels:  antd
the-green-meal
🍒 Keep track of your meals calories
Stars: ✭ 81 (+252.17%)
Mutual labels:  antd
antd-curd
📦 基于 ant design 、 dva 、 antd-form-mate 的增删改查页面组件。
Stars: ✭ 26 (+13.04%)
Mutual labels:  antd
antd-color-replacer
适用于 webpack 环境下 的 主题切换插件
Stars: ✭ 22 (-4.35%)
Mutual labels:  antd
nodejs-spider
No description or website provided.
Stars: ✭ 18 (-21.74%)
Mutual labels:  antd
pityWeb
🎉一个持续迭代的开源接口测试平台(前端),欢迎大家多提issue多给反馈。 求star⭐,我会努力更新下去的!
Stars: ✭ 25 (+8.7%)
Mutual labels:  antd

pocassist

介绍

本项目为 pocassist 的前端项目。由react + antd开发。

Demo

登录页

登录页

规则首页

规则首页

规则详情

规则详情

单挑规则靶机测试

单条规则靶机测试

漏洞描述首页

漏洞描述首页

漏洞描述详情

漏洞描述详情

新建批量扫描任务

新建扫描任务

任务首页

任务首页

扫描结果

扫描结果

结果首页

结果首页

组件首页

组件首页

使用

开发者模式

yarn start

将运行于 http://localhost:3333

线上部署

打包:yarn build

安装nginx,修改nginx.conf反向代理后端。

upstream pocassistAPI {
				# 配置后端端口
        server 127.0.0.1:1231;
    }
server {
        listen       80;
        location / {
        		# 配置build文件夹路径
            root /opt/pocassistWEB/build/;
        }

        location /api/ {
            proxy_pass http://pocassistAPI/api/;
        }

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].