ente/desktop/README.md

43 lines
806 B
Markdown
Raw Normal View History

## Desktop app for Ente Photos
2021-03-27 12:35:04 +00:00
The sweetness of Ente Photos, right on your computer. Linux, Windows and macOS.
You can [**download** a pre-built binary from
releases](https://github.com/ente-io/photos-desktop/releases/latest).
To know more about Ente, see [our main README](../README.md) or visit
[ente.io](https://ente.io).
## Building from source
2021-03-27 12:35:04 +00:00
> [!CAUTION]
>
> We moved a few things around when switching to a monorepo recently, so this
> folder might not build with the instructions below. Hang tight, we're on it,
> will fix things if.
2022-07-08 02:38:11 +00:00
Fetch submodules
2022-07-08 02:38:11 +00:00
```sh
git submodule update --init --recursive
```
2021-08-22 19:06:02 +00:00
Install dependencies
2022-09-08 05:23:12 +00:00
```sh
yarn install
```
2022-09-08 05:23:12 +00:00
Run the app
2022-09-08 05:23:12 +00:00
```sh
2022-09-08 05:23:12 +00:00
yarn start
2021-04-02 09:15:11 +00:00
```
To recompile automatically using electron-reload, run this in a separate
terminal:
2021-03-27 12:35:04 +00:00
```bash
2022-09-08 05:23:12 +00:00
yarn watch
2021-03-27 12:35:04 +00:00
```