This is just a somple application to list charges. There's also a page to add new ones. All the charges are saved locally using localStorage
.
Desktop
Mobile
$ git clone https://github.com/diemoritat/tracker.git
$ cd tracker
yarn install
yarn serve
The application will be running at:
- Local: http://localhost:8080/
- Network: http://192.168.166.101:8080/
├── public/
├── src/
| ├── assets/
| ├── store/
| ├── styles/
| ├── views/
├── tests/
| ├── unit/
├── .gitignore
├── babel.config.js
├── package.json
├── README.md
├── vue.config.js
└── yarn.lock
Command | Description |
---|---|
yarn serve |
Start the application in development mode |
yarn build |
Build the application for production |
yarn lint |
Runs ESLint on the files |
yarn test:unit |
Runs Jest automated tests |
The deployment to the prod environment is done automatically through Netlify.
This project is not a product, will never be, will not go into production, and has no intention to serve any purpose other than to be a test application to a development position.