Ready To Work¶
For more information about installation, refer to the Source Install Ubuntu
Preparation before development¶
Node environment
Requirement in package.json:
"node": ">=10.22.0"Verify nodejs version
node -vYarn
Install yarn
npm install -g yarnInstall dependencies
Execute in the project root directory, which is the same level as
package.json, and wait patiently for the installation to complete
yarn installPrepare a usable backend
Prepare an accessible backend, for example:
https://172.20.154.250Add file
config/local_config.yaml:
server: https://172.20.154.250
Configure access host and port
The default configuration is in
config/config.yaml-hostis0.0.0.0-portis8088- If the current configuration does not need to be changed, the following steps do not need to be operated.Added file
config/local_config.yamlAdd
hostandportconfigurations
host: localhost port: 8080
Completed
Execute in the project root directory, which is the same level as
package.json
yarn run devUse the host and port configured in
config/config.yamlorconfig/local_config.yamlto access, such ashttp://localhost:8088The front-end real-time update environment used for development is done.
Front-end package used in production environment¶
Have the required nodejs and yarn
Execute in the project root directory, which is the same level
as package.json
yarn run build
The packaged files are in the dist directory and handed over
to the deployment personnel.
Front-end package used for testing¶
Have the required nodejs and yarn
Execute in the project root directory, which is the same level
as package.json
yarn run build:test
The packaged files are in the dist directory
Note
This test package is designed to measure code coverage
It is recommended to use nginx to complete the E2E test with code coverage