2
0
mirror of https://github.com/frappe/books.git synced 2024-11-10 07:40:55 +00:00
books/README.md

57 lines
763 B
Markdown
Raw Normal View History

2018-02-12 16:23:14 +00:00
# Frappe Accounting
2018-01-09 13:40:33 +00:00
2018-02-12 16:23:14 +00:00
Simple JS based app for personal and small businesses accounting
2018-01-09 13:40:33 +00:00
### Installation
2018-01-09 13:40:33 +00:00
#### Step 0
Install build essentials
Ubuntu
```bash
apt-get install build-essential python git
apt-get install libgconf-2-4
```
#### Step 1
Install [Node.js](https://nodejs.org/en/) LTS (version 8.11.1)
> Tip: The best way to install and manage Node is to install [nvm](https://github.com/creationix/nvm)
#### Step 2
Install `yarn` package manager.
```bash
npm install -g yarn
2018-01-09 13:40:33 +00:00
```
#### Step 3
Clone this repo
```bash
git clone https://github.com/frappe/accounting.git
```
#### Step 4
Install dependencies and launch Accounting
```bash
cd accounting
# Install dependencies
yarn
# Start the electron app
yarn electron
2018-01-09 13:40:33 +00:00
Frappe Technologies