FeDirect/README.md

23 lines
548 B
Markdown
Raw Normal View History

2025-01-12 04:47:05 +01:00
# FeDirect
Fedi links that open on your preferred instance!
2025-01-30 17:33:15 +01:00
## Building and Running
2025-01-12 04:47:05 +01:00
To compile TypeScript, the build script assumes Deno is installed.
2025-01-30 17:33:15 +01:00
1. [Install Rust via rustup](https://rustup.rs/)
2. [Install Deno](https://deno.com/)
3. Run `install-binary-deps.sh` (this installs the icon scraper and possibly
more in the future)
4. Use Cargo to build the project:
2025-01-12 04:47:05 +01:00
```sh
# For example, to build for release, you can do
cargo build --release
# Or, to immediately run it
cargo run --release
# Or, to run during development:
cargo run
```