comparison README.md @ 279:b3b547563ec7

Add Google connector service and agent wiki Implement the C/Seobeo Google Drive and Gmail connector with encrypted OAuth storage, Zenbu authentication, browser testing, AI tool discovery, chunked HTTP decoding, and Bazel coverage. Consolidate repository guidance into progressive wiki documentation and enforce arena-first allocation for new first-party C code. Co-authored-by: Copilot <[email protected]> Copilot-Session: 84c338fd-0939-4bb3-b7f3-1062eb213e5d
author MrJuneJune <me@mrjunejune.com>
date Mon, 17 Aug 2026 22:22:36 -0700
parents f3084bca7317
children
comparison
equal deleted inserted replaced
278:8d560f50ed4c 279:b3b547563ec7
1 # Zenbu 1 # Zenbu
2 2
3 This is a mono repo where I will share all my codes and utilize them using bazel. I decied to do this since I re-use codes often and I don't want to deal with making make and cmake every time and this eliminates the problem that exists within C or C++ where using library is harder as we need to add gzillian stuff into it lmao. 3 Mercurial/Bazel monorepo for reusable C libraries, servers, web applications,
4 frontend assets, and experiments.
4 5
5 ## Dependency... 6 **Repository knowledge index:** [`wiki/README.md`](wiki/README.md)
6 7
7 ``` 8 **Agent entry point:** [`AGENTS.md`](AGENTS.md)
8 clang
9 ffmpeg
10 ```
11 9
12 ## Install 10 Start at the repository wiki, then follow only the documentation link for the
13 11 project you are changing.
14 I decide to use mercurial because I got used to this over git and I frankly don't need different branches for each feature to be merged in.
15 I also decied to use the bazel for code sharing as I mentioned above.
16
17 ```
18 # linux
19 wget https://github.com/bazelbuild/bazelisk/releases/download/v1.18.0/bazelisk-linux-amd64 # Hope it still works lmao
20 chmod +x bazelisk-linux-amd64
21 sudo mv bazelisk-linux-amd64 /usr/local/bin/bazel
22 bazel version
23
24 # mac
25 brew install bazel
26 ```
27
28 I might move these binary into the repo so that it has full history of it. I assume mercurial is installed as well.
29
30 ## Debugging Command
31
32 ```bash
33 bazel build target -c dbg
34 i.e) bazel build //mrjunejune:mrjunejune_server -c dbg
35 ```
36
37 And run whatever your favoriate debugging tools
38
39 ## MacOS Memory checks
40
41 ```bash
42 bazel run //dowa:dowa_test --run_under="valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes"
43 ```
44 brew install valgrind
45 # or use the unofficial ARM build:
46 arch -x86_64 brew install valgrind
47 arch -x86_64 valgrind ./test