You can directly use the Docker pull image for quick startup. Here are the commands to pull the front-end image
docker pull wansenai/eairp-web:2.0.3
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.0.3
If you want to deploy the API using Docker, you can also pull the API image
docker pull wansenai/eairp:2.0.3
And run API services
docker run --name eairp -d -p 9998:8088 wansenai/eairp:2.0.3
-
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非常感谢.
- wansen-erp - Current version
- wansen-erp-core - Current API version
The Chrome 80+
browser is recommended for local development
Support modern browsers, not IE
IE |
Edge |
Firefox |
Chrome |
Safari |
---|---|---|---|---|
not support | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
- Get the project code
git clone https://github.com/wansenai/wansen-erp.git
- Installation dependencies
cd wansen-erp
pnpm install
- run
pnpm serve
- build
pnpm build