2024-03-02 12:27:37 +00:00
|
|
|
## Desktop app for Ente Photos
|
2021-03-27 12:35:04 +00:00
|
|
|
|
2024-03-02 12:27:37 +00:00
|
|
|
The sweetness of Ente Photos, right on your computer. Linux, Windows and macOS.
|
|
|
|
|
2024-03-13 07:57:43 +00:00
|
|
|
You can
|
|
|
|
[**download** a pre-built binary from releases](https://github.com/ente-io/photos-desktop/releases/latest).
|
2024-03-02 12:27:37 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2024-03-13 07:22:04 +00:00
|
|
|
Fetch submodules
|
|
|
|
|
|
|
|
```sh
|
|
|
|
git submodule update --init --recursive
|
|
|
|
```
|
|
|
|
|
2024-03-02 12:27:37 +00:00
|
|
|
Install dependencies
|
2022-09-08 05:23:12 +00:00
|
|
|
|
2024-03-02 12:27:37 +00:00
|
|
|
```sh
|
|
|
|
yarn install
|
|
|
|
```
|
2022-09-08 05:23:12 +00:00
|
|
|
|
2024-03-12 12:14:15 +00:00
|
|
|
Run in development mode (with hot reload)
|
2024-03-12 11:01:16 +00:00
|
|
|
|
|
|
|
```sh
|
|
|
|
yarn dev
|
2021-03-27 12:35:04 +00:00
|
|
|
```
|
2024-03-11 12:07:10 +00:00
|
|
|
|
2024-03-12 11:01:16 +00:00
|
|
|
> [!CAUTION]
|
|
|
|
>
|
|
|
|
> `yarn dev` is currently not working (we'll fix soon). If you just want to
|
2024-03-12 12:14:15 +00:00
|
|
|
> build from source and use the generated binary, use `yarn build`.
|
2024-03-12 11:01:16 +00:00
|
|
|
|
2024-03-12 12:14:15 +00:00
|
|
|
Or create a binary for your platform
|
2024-03-11 12:07:10 +00:00
|
|
|
|
|
|
|
```sh
|
2024-03-12 12:14:15 +00:00
|
|
|
yarn build
|
2024-03-11 12:07:10 +00:00
|
|
|
```
|
2024-03-12 12:14:15 +00:00
|
|
|
|
|
|
|
That's the gist of it. For more development related documentation, see
|
|
|
|
[docs](docs/README.md).
|