Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 562 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 562 Bytes

norton-life-lock

Project setup

You will need docker or docker-compose

To run the developemnt enviromment using the docker compose

```
docker compose up -- build 
docker compose up
```

To run the unit tests in the docker container run

```
docker-compose run vue-app npm run test:unit

You can also use npm to set up enviroment

To run the developemnt enviromment using npm run

```
npm install
npm run serve
```

To run the unit tests localy run

```
npm run test:unit