joanrufe / tui-6m-react

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Linter rules

If you use VS code skip to the next section, otherwise set your editor so it uses the configuration files in each linter file (.eslintrc, .stylelintrc and .prettierrc).

VScode settings

If you are a VScode user, please enable this extensions in the project workspace:

And make sure you have this settings in the root folder:

{
  "eslint.workingDirectories": ["frontend"],
  "css.validate": false,
  "scss.validate": false,
  "editor.formatOnSave": true,
  "eslint.autoFixOnSave": true,
  "eslint.validate": [
    "javascript",
    "javascriptreact",
    "typescript",
    "typescriptreact"
  ]
}

How to develop

Go to frontend folder and run:

npm install
npm run develop

Go to middlelayer folder and run:

npm start

How to deploy

Go to the root folder of the project and execute:

npm run build

About


Languages

Language:JavaScript 93.5%Language:HTML 6.5%