Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 638 Bytes

README.md

File metadata and controls

44 lines (31 loc) · 638 Bytes

Shipped Brain

This is the repository for Shipped Brain's frontend applicaition, currently using Angular 9.

Install packages

npm install

Format files with Prettier

npm run prettier

If using Visual Studio Code, you can format files on save/paste by placing the following in your settings.json file:

{
    "editor.formatOnSave": true,
    "editor.formatOnPaste": true,
    "editor.defaultFormatter": "esbenp.prettier-vscode"
}

Lint project

npm run lint

Run unit tests

(not yet implemented)

npm run test

Build application

npm run build