mirror of
https://github.com/actualbudget/actual.git
synced 2026-07-20 04:47:46 -05:00
Examples on how to use ActualQL and a re-arrangement of the sidebar, this resolves #16
1.2 KiB
1.2 KiB
title
| title |
|---|
| How To Build Browser For Windows |
Many of the build scripts are bash scripts and not natively invokable in Windows. To solve this, you can build the project using Git Bash.
- Install Git & Git Bash for Windows
- Ensure you have activated Developer Mode
- Install Node v16.x (latest version 17.x does not work due to issue with crypto package)
- Clone this repo
- Using Git Bash, change to the the root of this repo
- From inside the bash shell, run
yarn install - From still inside the shell, run
yarn start:browser - Open your browser to
localhost:3001
How to build electron for Windows
- Follow steps 1 - 6 above.
- Run
yarn start. If you get an error about bundle.desktop.js, just CTRL+C and rerunyarn start. - If you get an error from electron, run
yarn rebuild-electronand rerunyarn start;
rsync: command not found
If you run into this error, you will need to install the rsync binary to Git Bash. Follow the directions here.