An implementation of the Urbit runtime
Go to file
2023-01-18 19:48:55 +01:00
.github/workflows ci: add on-demand binary uploading flow (#130) 2023-01-18 19:48:55 +01:00
bazel Enable native linux-aarch64 build (#117) 2023-01-17 14:47:11 -05:00
doc/spec docs: remove http-ports.txt 2022-03-04 19:36:26 -06:00
docker Achieve feature parity with v1.15 and earlier Docker images (#123) 2023-01-18 12:24:52 -05:00
pkg Achieve feature parity with v1.15 and earlier Docker images (#123) 2023-01-18 12:24:52 -05:00
.bazelrc Add support for optimized and debug builds (#103) 2023-01-12 13:57:44 -05:00
.gitignore Replace Xcode-specific sys_includes path in clang-macos-arm64 (#24) 2023-01-09 13:50:20 -05:00
BUILD.bazel Achieve feature parity with v1.15 and earlier Docker images (#123) 2023-01-18 12:24:52 -05:00
CONTRIBUTING.md Tidy up markdown documentation (#100) 2023-01-17 15:39:56 -05:00
INSTALL.md Tidy up markdown documentation (#100) 2023-01-17 15:39:56 -05:00
LICENSE.txt Restore toplevel LICENSE.txt file. 2020-01-28 13:24:39 -08:00
MAINTAINERS.md Tidy up markdown documentation (#100) 2023-01-17 15:39:56 -05:00
Makefile build: removes herb from top-level Makefile, shell.nix 2022-06-03 14:40:08 -04:00
PACE Improve versioning scheme for soon and edge trains (#96) 2023-01-11 15:13:18 -05:00
README.md Build with musl instead of glibc on Linux (#27) 2023-01-09 13:54:11 -05:00
VERSION Improve versioning scheme for soon and edge trains (#96) 2023-01-11 15:13:18 -05:00
WORKSPACE.bazel Achieve feature parity with v1.15 and earlier Docker images (#123) 2023-01-18 12:24:52 -05:00

Urbit Runtime

Urbit is a personal server stack built from scratch. This repository contains Urbit's runtime environment, the lowest layer of the Urbit stack, which includes the Nock virtual machine, I/O drivers, event log, and snapshotting system.

Getting Started

For basic Urbit usage instructions, head over to urbit.org. For a high-level overview of the salient aspects of Urbit's architecture, visit developers.urbit.org. You might also be interested in joining the urbit-dev mailing list.

Packages

Urbit's runtime is broken down into a few separate layers, each of which is defined in its own package:

  • pkg/c3: A set of basic utilities for writing Urbit's style of C.
  • pkg/ent: A cross-platform wrapper for getentropy(2).
  • pkg/urcrypt: A standardized interface for calling various cryptographic functions used in the Urbit runtime.
  • pkg/ur: An implementation of jam and cue, Urbit's bitwise noun serialization and deserialization algorithms, respectively.
  • pkg/noun: The Nock virtual machine and snapshotting system.
  • pkg/vere: The I/O drivers, event log, and main event loop.

Build

See INSTALL.md.

Contributing

Contributions of any form are more than welcome. Please take a look at our contributing guidelines for details on our git practices, coding styles, how we manage issues, and so on.