Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/activitywatch/aw-server-rust
High-performance implementation of the ActivityWatch server, written in Rust
https://github.com/activitywatch/aw-server-rust
activitywatch rest-api rust server sync timetracking
Last synced: about 3 hours ago
JSON representation
High-performance implementation of the ActivityWatch server, written in Rust
- Host: GitHub
- URL: https://github.com/activitywatch/aw-server-rust
- Owner: ActivityWatch
- License: mpl-2.0
- Created: 2018-10-08T21:20:42.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-17T17:24:25.000Z (22 days ago)
- Last Synced: 2024-10-30T00:54:47.521Z (9 days ago)
- Topics: activitywatch, rest-api, rust, server, sync, timetracking
- Language: Rust
- Homepage:
- Size: 1.32 MB
- Stars: 190
- Watchers: 6
- Forks: 55
- Open Issues: 53
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
aw-server-rust
==============[![Build Status](https://github.com/ActivityWatch/aw-server-rust/workflows/Build/badge.svg?branch=master)](https://github.com/ActivityWatch/aw-server-rust/actions?query=workflow%3ABuild+branch%3Amaster)
[![Coverage Status](https://codecov.io/gh/ActivityWatch/aw-server-rust/branch/master/graph/badge.svg)](https://codecov.io/gh/ActivityWatch/aw-server-rust)
[![Dependency Status](https://deps.rs/repo/github/activitywatch/aw-server-rust/status.svg)](https://deps.rs/repo/github/activitywatch/aw-server-rust)A reimplementation of aw-server in Rust.
Features missing compared to the Python implementation of aw-server:
- API explorer (Swagger/OpenAPI)
### How to compile
Build with `cargo`:
```sh
cargo build --release
```You can also build with make, which will build the web assets as well:
```
make build
```Your built executable will be located in `./target/release/aw-server-rust`. If you want to use it with a development version of `aw-qt` you'll want to copy this binary into your `venv`:
```shell
cp target/release/aw-server ../venv/bin/aw-server-rust
```### How to run
If you want to quick-compile for debugging, run cargo run from the project root:
```sh
cargo run --bin aw-server
```*NOTE:* This will start aw-server-rust in testing mode (on port 5666 instead of port 5600).
### Syncing
For details about aw-sync-rust, see the [README](./aw-sync/README.md) in its subdirectory.