https://github.com/benediktwerner/moneysync
https://github.com/benediktwerner/moneysync
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/benediktwerner/moneysync
- Owner: benediktwerner
- Created: 2018-11-02T07:28:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-28T08:44:16.000Z (about 2 years ago)
- Last Synced: 2025-03-05T22:46:00.822Z (about 2 months ago)
- Language: TypeScript
- Size: 4.34 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MoneySync
Progressive Web App to manage personal finances. Uses Angular and Firebase.
## Development
### Dev Server
- `ng serve` for dev server at `http://localhost:4200/`
- `ng serve -o` to open browser### Scaffold code
- `ng generate component ` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
- Shortform: `ng g c `### Build
- `ng build` to build the project. Output in `dist/`
- `ng build --prod` for a production build### Test
- `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
- `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).