changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > org > docs / infra/quickstart.org

changeset 19: 93bea7513a3e
parent: b6889b8a2f83
child: 6932edcf60ec
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 28 Apr 2024 19:50:01 -0400
permissions: -rw-r--r--
description: update
1 {{{header(infra/quickstart,
2 Richard Westhaver,
3 ellis@rwest.io,
4 Infra Quickstart Guide)}}}
5 #+property: header-args :dir /home/ellis/dev/comp/infra/
6 
7 - Minimum Host Requirements
8  - x86_64 4 core CPU
9  - 8G RAM
10  - 32G Disk Space
11  - Unix OS (Archlinux > other GNU/Linux > Darwin)
12 
13 - Minimum Dependencies
14  - Make
15  - Mercurial
16  - Git
17  - Clang
18  - Zstd
19  - Podman
20  - SBCL
21 
22 - init from container registry
23 #+name: pull-infra-container
24 #+begin_src shell
25 podman pull registry.compiler.company/comp/infra/box:latest
26 podman run -it infra/box
27 #+end_src
28 
29 /OR/
30 
31 - init from source
32 #+name: pull-infra-source
33 #+begin_src shell
34 hg clone https://vc.compiler.company/comp/infra
35 cd infra
36 make box
37 #+end_src