common-cents-web/README.md
2026-02-10 15:24:54 -06:00

33 lines
926 B
Markdown

# Common Cents Web
Angular app for tracking expenses. Consumes [Common Cents API](https://git.8yte.me/joe/common-cents-api).
## Project setup
> Note: modern version of the Angular CLI should be installed.
Install dependencies:
```bash
npm install
```
## Run Locally
Start the web app:
```bash
npm run start
```
App will be running at http://localhost:4200/.
## Building
To build the project run:
```bash
ng build
```
This will compile your project and store the build artifacts in the `dist/` directory. By default, the production build optimizes your application for performance and speed.
## Running Tests
To execute unit tests with the [Vitest](https://vitest.dev/) test runner, use the following command:
```bash
ng test
```
## Resources
For more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.