Go to file
Joan Sanchez 394f756f2b Merge branch 'dev' into test 2019-01-22 11:18:26 +01:00
.vscode Debugger autoattach, autorestart services on file change 2018-11-02 10:48:15 +01:00
back update model sip 2019-01-21 14:53:23 +01:00
e2e Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix into dev 2019-01-22 10:04:53 +01:00
front Style fixes 2019-01-21 16:08:25 +01:00
loopback copy print folder on dockerfile build 2019-01-22 10:57:52 +01:00
modules excluded test due changes in mailer #79 2019-01-22 10:31:36 +01:00
print copy print folder on dockerfile build 2019-01-22 10:57:52 +01:00
services copy print folder on dockerfile build 2019-01-22 10:57:52 +01:00
.dockerignore #814 Docker deploy fixes 2018-12-31 14:02:46 +01:00
.editorconfig Eslint 2017-03-01 09:55:17 +01:00
.eslintignore css & eslint fix 2018-08-21 10:54:01 +02:00
.eslintrc.yml # 814 Separated service modules from services 2018-12-21 13:40:08 +01:00
.gitignore #814 Deploy fixes 2018-12-27 16:10:55 +01:00
Dockerfile copy print folder on dockerfile build 2019-01-22 10:57:52 +01:00
Jenkinsfile Disable concurrent builds in Jenkinsfile 2019-01-17 12:06:40 +01:00
LICENSE README and LICENSE updated 2018-01-29 13:49:59 +01:00
README.md #982 Preparar tests para que puedan ser lanzados desde el servidor 2019-01-21 17:01:01 +01:00
docker-compose.yml removed link to mailer service on docker compose 2019-01-22 10:04:38 +01:00
gulpfile.js added print folder to gulpfile install 2019-01-22 11:16:14 +01:00
karma.conf.js #814 Docker & test 2019-01-04 13:32:04 +01:00
modules.yml #814 Deploy fixes 2018-12-27 16:10:55 +01:00
package-lock.json #982 Preparar tests para que puedan ser lanzados desde el servidor 2019-01-21 17:01:01 +01:00
package.json #982 Preparar tests para que puedan ser lanzados desde el servidor 2019-01-21 17:01:01 +01:00
webpack.config.js Gulp updated, packages updated, db docker bugs fixed 2019-01-09 10:02:56 +01:00
webpack.config.yml #814 First stable version 2018-12-27 12:54:16 +01:00

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.

  • Visual Studio Code
  • Node.js = 8.15.0
  • NGINX
  • Docker

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

You will need to install globally the following items.

# npm install -g karma-cli gulp-cli nodemon

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

Also you can run backend and frontend as separately gulp tasks (including NGINX).

$ gulp front
$ gulp back

Manually reset fixtures.

$ gulp docker

Running the unit tests

For client-side unit tests run from project's root.

$ karma start

For server-side unit tests run from project's root.

$ gulp backTest

For end-to-end tests run from project's root.

$ gulp e2e

Built With