erp前端仓库
Go to file
Mrxtyyp f56dc58277 feat: first commit 2024-08-28 14:28:57 +08:00
deploy feat: first commit 2024-08-28 14:28:57 +08:00
docs feat: first commit 2024-08-28 14:28:57 +08:00
images feat: first commit 2024-08-28 14:28:57 +08:00
internal feat: first commit 2024-08-28 14:28:57 +08:00
packages feat: first commit 2024-08-28 14:28:57 +08:00
public feat: first commit 2024-08-28 14:28:57 +08:00
src feat: first commit 2024-08-28 14:28:57 +08:00
types feat: first commit 2024-08-28 14:28:57 +08:00
.DS_Store feat: first commit 2024-08-28 14:28:57 +08:00
.dockerignore feat: first commit 2024-08-28 14:28:57 +08:00
.env feat: first commit 2024-08-28 14:28:57 +08:00
.env.analyze feat: first commit 2024-08-28 14:28:57 +08:00
.env.development feat: first commit 2024-08-28 14:28:57 +08:00
.env.docker feat: first commit 2024-08-28 14:28:57 +08:00
.env.production feat: first commit 2024-08-28 14:28:57 +08:00
.eslintignore feat: first commit 2024-08-28 14:28:57 +08:00
.eslintrc.js feat: first commit 2024-08-28 14:28:57 +08:00
.gitignore feat: first commit 2024-08-28 14:28:57 +08:00
.npmrc feat: first commit 2024-08-28 14:28:57 +08:00
.prettierignore feat: first commit 2024-08-28 14:28:57 +08:00
.prettierrc.js feat: first commit 2024-08-28 14:28:57 +08:00
.stylelintrc.js feat: first commit 2024-08-28 14:28:57 +08:00
LICENSE-APACHE feat: first commit 2024-08-28 14:28:57 +08:00
LICENSE-MIT feat: first commit 2024-08-28 14:28:57 +08:00
README-zh_CN.md feat: first commit 2024-08-28 14:28:57 +08:00
README.md feat: first commit 2024-08-28 14:28:57 +08:00
index.html feat: first commit 2024-08-28 14:28:57 +08:00
nginx.conf feat: first commit 2024-08-28 14:28:57 +08:00
package.json feat: first commit 2024-08-28 14:28:57 +08:00
pnpm-lock.yaml feat: first commit 2024-08-28 14:28:57 +08:00
pnpm-workspace.yaml feat: first commit 2024-08-28 14:28:57 +08:00
tsconfig.json feat: first commit 2024-08-28 14:28:57 +08:00
turbo.json feat: first commit 2024-08-28 14:28:57 +08:00
vite.config.ts feat: first commit 2024-08-28 14:28:57 +08:00
wansenai-logo.png feat: first commit 2024-08-28 14:28:57 +08:00

README.md

Enterprise AI Resource Planning Web

Next generation artificial intelligent ERP system.

Project

English | 简体中文

Quick Start

You can directly use the Docker pull image for quick startup. Here are the commands to pull the front-end image

Pull images

docker pull wansenai/eairp-web:2.1.1

Run Server

Please note the API_BASE_URL parameter, this is the address mapped by the back-end interface. If you are deploying on your server, modify the localhost address here to your server IP.

docker run --name eairp-web -d -p 3000:80 -e API_BASE_URL=http://localhost:8080/erp-api wansenai/eairp-web:2.1.1

If you want to deploy the API using Docker, you can also pull the API image

docker pull wansenai/eairp:2.1.1

And run API services

docker run --name eairp -d -p 9998:8088 wansenai/eairp:2.1.1

Online preview

  • eairp preview / 在线预览

  • test account (测试账号): wansen

  • test password (测试密码): 123456

  • Some functional modules are being developed and improved, please refer to our to-do list. It's not easy to generate electricity with love.

  • If this project is helpful to you, please click on Star. Thank you.

    一些功能模块正在开发和改进中, 请参阅我们的开发计划, 用爱发电很不容易, 如果这个项目对你有帮助, 请点击Star非常感谢.

Repository code

Browser support

The Chrome 80+ browser is recommended for local development

Support modern browsers, not IE

 Edge
IE
 Edge
Edge
Firefox
Firefox
Chrome
Chrome
Safari
Safari
not support last 2 versions last 2 versions last 2 versions last 2 versions

System screenshot (only part)

Install and use

  • Get the project code
git clone https://github.com/wansenai/eairp.git

cd eairp

If you have not installed the pnpm tool, please use the following command to install pnpm first

npm install -g pnpm
  • Installation dependencies
pnpm install
  • run
pnpm serve
  • build
pnpm build