2
0
mirror of https://github.com/frappe/books.git synced 2024-09-19 19:19:02 +00:00
books/README.md

76 lines
1.8 KiB
Markdown
Raw Normal View History

2020-01-02 17:36:00 +00:00
# Frappe Books
[![Build Status](https://travis-ci.com/frappe/accounting.svg?branch=master)](https://travis-ci.com/frappe/accounting)
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/frappe/books)](https://github.com/frappe/books/releases)
![](https://img.shields.io/badge/platform-mac%2C%20windows%2C%20linux-yellowgreen)
2020-01-02 17:36:00 +00:00
Free Desktop book-keeping software for small-businesses and freelancers.
<kbd><img src=".github/frappe-books-preview.png" alt="Frappe Books Preview" /></kbd>
## Features
1. Double-entry accounting
1. Invoicing
1. Billing
1. Payments
1. Journal Entries
1. Dashboard
1. Works Offline
1. Financial Reports
- General Ledger
- Profit and Loss Statement
- Balance Sheet
- Trial Balance
1. Multi-currency Invoicing
## Download
2020-01-02 17:36:00 +00:00
Download the latest release for your platform from the [releases
page](https://github.com/frappe/books/releases).
## Development
2020-01-02 17:36:00 +00:00
Frappe Books is built on [FrappeJS](https://github.com/frappe/frappejs), Vue.js
and Electron. It is offline by default, and uses a local SQLite file as the
database.
### Pre-requisites
1. Install build essentials
Ubuntu
```bash
apt-get install build-essential python git
apt-get install libgconf-2-4
```
MacOS
```bash
xcode-select --install
```
You will also need [Xcode App](https://apps.apple.com/in/app/xcode/id497799835?mt=12) from App Store
2018-01-09 13:40:33 +00:00
2. Install [Node.js](https://nodejs.org/en/)
> Tip: The best way to install and manage Node is to install [nvm](https://github.com/nvm-sh/nvm#usage)
3. Install `yarn` package manager
```bash
npm install -g yarn
```
### Clone and Run
```bash
# clone the repository
2020-01-02 17:36:00 +00:00
git clone https://github.com/frappe/books.git
# change directory
2020-01-02 17:36:00 +00:00
cd books
# install dependencies
yarn
# start the electron app
2020-01-02 17:36:00 +00:00
yarn electron:serve
2019-07-23 07:47:20 +00:00
```