/ index.html
index.html
 1  <!DOCTYPE html>
 2  <html>
 3      <head>
 4          <title>Get Codex</title>
 5      <style>
 6          html * {
 7              font-size: 14px;
 8              line-height: 1.5;
 9              color: black;
10              font-family: monospace;
11          }
12      </style>
13      </head>
14  
15      <body>
16          <h3>
17              Get Codex - Linux, macOS and Windows (msys2)
18          </h3>
19  
20          <p>
21              <span style="color:grey;">
22                  # latest version
23              </span>
24              <br>
25                  curl -s https://get.codex.storage/install.sh | bash
26          </p>
27  
28          <p>
29              <span style="color:grey;">
30                  # specific version
31              </span>
32              <br>
33                  curl -s https://get.codex.storage/install.sh | VERSION=0.1.7 bash
34          </p>
35  
36          <p>
37              <span style="color:grey;">
38                  # latest codex and cirdl
39              </span>
40              <br>
41                  curl -s https://get.codex.storage/install.sh | CIRDL=true bash
42          </p>
43  
44          <p>
45              <span style="color:grey;">
46                  # codex and cirdl with required libraries on Windows with msys2
47              </span>
48              <br>
49                  curl -s https://get.codex.storage/install.sh | CIRDL=true WINDOWS_LIBS=true bash
50          </p>
51  
52          <br>
53  
54          <h3>
55              Get Codex - Windows
56          </h3>
57  
58          <p>
59              <span style="color:grey;">
60                  :: latest version
61              </span>
62              <br>
63                  curl -sO https://get.codex.storage/install.cmd && install.cmd
64          </p>
65  
66          <p>
67              <span style="color:grey;">
68                  :: specific version
69              </span>
70              <br>
71                  curl -sO https://get.codex.storage/install.cmd && set VERSION=0.1.7 & install.cmd
72          </p>
73  
74          <p>
75              <span style="color:grey;">
76                  :: latest codex and cirdl
77              </span>
78              <br>
79                  curl -sO https://get.codex.storage/install.cmd && set CIRDL=true install.cmd
80          </p>
81  
82          <p>
83              <span style="color:grey;">
84                  :: codex and cirdl without libraries
85              </span>
86              <br>
87                  curl -sO https://get.codex.storage/install.cmd && set CIRDL=true & set WINDOWS_LIBS=false & install.cmd
88          </p>
89      </body>
90  </html>