A local-first private AI assistant for everyday use. Runs on-device models with encrypted P2P sync, and supports sharing chats publicly on ATProto.
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update HACKING.md

authored by

feynon and committed by
GitHub
74ea2f09 780bd020

+32
+32
HACKING.md
··· 1 + There are two environments in Tiles: `prod` and `dev`. Follow the instructions below to set up the development environment. 2 + 3 + ## Building 4 + 5 + 1. Clone the repository. 6 + 7 + 2. Install [`just`](https://github.com/casey/just). 8 + 9 + 3. Set up the Rust environment: 10 + 11 + ```sh 12 + cargo build 13 + ``` 14 + 15 + 4. Install [`uv`](https://docs.astral.sh/uv/) for the Python server. 16 + 17 + 5. Set up the server: 18 + 19 + ```sh 20 + cd server 21 + uv sync 22 + ``` 23 + 24 + ## Running 25 + 26 + 1. From the repository root, start the server in one terminal: 27 + 28 + ```sh 29 + just serve 30 + ``` 31 + 32 + 2. In another terminal, run the Rust CLI using Cargo as usual.