Go to file
Bernat 2755da97e0 update fixtures 2018-11-15 13:36:48 +01:00
.vscode Debugger autoattach, autorestart services on file change 2018-11-02 10:48:15 +01:00
client Merge branch 'dev' of https://git.verdnatura.es/salix into dev 2018-11-15 08:59:25 +01:00
e2e update acl and squema db 2018-11-15 12:02:12 +01:00
services update fixtures 2018-11-15 13:36:48 +01:00
.editorconfig Eslint 2017-03-01 09:55:17 +01:00
.env.json datasource loopback unique 2018-03-13 11:15:39 +01:00
.eslintignore css & eslint fix 2018-08-21 10:54:01 +02:00
.eslintrc.yml eslint allow brackets on multiline statements 2018-11-06 09:03:47 +01:00
.gitignore Bug #452 quitamos servicio production 2018-08-30 11:02:50 +02:00
Jenkinsfile package dependency 2018-10-25 12:16:55 +02:00
LICENSE README and LICENSE updated 2018-01-29 13:49:59 +01:00
README.md fix wrong command 2018-04-18 14:39:44 +02:00
db_tests.js #678 planificacion de tests db + small refactor on new.js 2018-09-26 15:48:33 +02:00
docker-compose.tpl.yml nginx SSL 2018-06-12 14:38:27 +02:00
e2e_tests.js successfully merged sequences for gulp docker and end to end tests 2018-01-08 13:40:05 +01:00
gulpfile.js Debugger autoattach, autorestart services on file change 2018-11-02 10:48:15 +01:00
karma.conf.js Unit tests fixed 2018-10-18 20:48:21 +02:00
package-lock.json #779 ticket.ticketRequester 2018-11-13 11:26:36 +01:00
package.json Watch just for services files in npm services sript 2018-11-02 13:49:25 +01:00
services_tests.js inclusion de servicio salix 2018-08-09 15:00:33 +02:00
smokes_tests.js smoke e2e tests plus gulp tasks 2018-03-09 20:04:03 +01:00
webpack.config.js Pagination: maxLoads 2018-09-13 15:19:50 +02:00
webpack.config.yml Documented Gulpfile, improved 'docker-wait' to handle errors 2018-02-13 22:40:02 +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.9.4
  • 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 webpack 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 client
$ gulp services

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.

$ npm run test

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

$ gulp e2e

Built With