Joan Sanchez
e2c742c893
gitea/salix/pipeline/head This commit looks good
Details
|
||
---|---|---|
.vscode | ||
back | ||
db | ||
e2e | ||
front | ||
loopback | ||
modules | ||
.dockerignore | ||
.editorconfig | ||
.eslintignore | ||
.eslintrc.yml | ||
.gitignore | ||
Dockerfile | ||
Jenkinsfile | ||
LICENSE | ||
README.md | ||
babel.config.js | ||
docker-compose.yml | ||
fileMock.js | ||
gulpfile.js | ||
jest-front.js | ||
jest.config.js | ||
package-lock.json | ||
package.json | ||
webpack.config.js |
README.md
Salix
This project is an Enterprise resource planning (ERP) integrated management of core business processes, in real-time and mediated by software and technology developed with the stack listed below.
Salix is also the scientific name of a beautifull tree! :)
Prerequisites
Required applications.
- Node.js = 12.17.0 LTS
- Docker
You will need to install globally the following items.
$ sudo npm install -g jest gulp-cli
For the usage of jest --watch on macOs.
$ brew install watchman
Linux Only Prerequisites
Your user must be on the docker group to use it so you will need to run this command:
$ sudo usermod -a -G docker yourusername
Getting Started // Installing
Pull from repository.
Run this commands on project root directory to install Node dependencies.
$ npm install
$ gulp install
Launch application in developer environment.
$ gulp
Manually reset fixtures.
$ gulp docker
Running the unit tests
For client-side unit tests run from project's root.
$ jest
For server-side unit tests run from project's root.
$ gulp backTest
For end-to-end tests run from project's root.
$ gulp e2e
Recommended tools
- Visual Studio Code
In Visual Studio Code we use the ESLint extension. Open Visual Studio Code, press Ctrl+P and paste the following command.
ext install dbaeumer.vscode-eslint