lume/README.md

67 lines
1.9 KiB
Markdown
Raw Normal View History

2024-03-02 08:29:45 +00:00
## Introduction
2023-02-21 07:58:47 +00:00
2024-03-02 08:29:45 +00:00
Lume is a Nostr client for desktop include Linux, Windows and macOS. It is free and open source, you can look at source code on Github. Lume is actively improving the app and adding new features, you can expect new update every month.
## Usage
2024-05-13 08:21:05 +00:00
Download Lume v4 for your platform here: [https://github.com/lumehq/lume/releases](https://github.com/lumehq/lume/releases)
Supported platform: macOS. Windows and Linux are coming soon.
2023-02-21 07:58:47 +00:00
2024-05-13 08:21:05 +00:00
Windows and Linux are availabel on v3 and below.
2023-02-21 14:48:57 +00:00
2024-03-02 08:29:45 +00:00
## Prerequisites
- Node.js >= 18: https://nodejs.org/en
- Rust: https://rustup.rs/
2023-09-12 09:00:41 +00:00
2024-03-02 08:29:45 +00:00
- PNPM: https://pnpm.io
2023-09-12 09:00:41 +00:00
2024-03-02 08:29:45 +00:00
- Tauri v2: https://beta.tauri.app/guides/prerequisites/
2023-09-12 09:00:41 +00:00
2024-03-02 08:29:45 +00:00
## Develop
2023-02-21 14:48:57 +00:00
2023-07-08 06:14:05 +00:00
Clone project
2023-04-20 03:17:43 +00:00
2023-03-05 02:40:42 +00:00
```
2024-02-01 02:15:25 +00:00
git clone https://github.com/lumehq/lume.git && cd lume
2023-04-20 03:17:43 +00:00
```
2023-07-08 06:14:05 +00:00
Install packages
2023-03-05 02:40:42 +00:00
```
2023-10-02 08:36:20 +00:00
pnpm install
2023-04-07 07:31:14 +00:00
```
2023-09-12 09:00:41 +00:00
Run dev build
2023-03-05 02:40:42 +00:00
```
2023-10-02 08:36:20 +00:00
pnpm tauri dev
2023-03-05 02:40:42 +00:00
```
2023-04-20 03:17:43 +00:00
2023-09-12 09:00:41 +00:00
Generate production build
2023-04-20 03:17:43 +00:00
2023-07-08 06:14:05 +00:00
```
2023-10-02 08:36:20 +00:00
pnpm tauri build
```
2023-10-24 12:57:15 +00:00
2024-03-02 08:29:45 +00:00
## Nix
2023-10-24 12:57:15 +00:00
Requirements:
1. [Install Nix](https://zero-to-flakes.com/install)
1. [Setup `direnv`](https://zero-to-flakes.com/direnv)
2023-10-24 15:26:50 +00:00
`cd` into the root folder of the project to enter `nix develop` shell. Run `direnv allow` (only once). Then run `pnpm` or `bun` (experimental) commands as described above.
2024-02-21 08:04:30 +00:00
## License
Copyright (C) 2023-2024 Ren Amamiya & other Lume contributors (see AUTHORS.md)
2024-03-02 08:29:45 +00:00
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
2024-02-21 08:04:30 +00:00
2024-03-02 08:29:45 +00:00
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
2024-02-21 08:04:30 +00:00
2024-03-02 08:29:45 +00:00
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.