Update index.html to make it more readable

This commit is contained in:
Slava 2024-10-15 20:14:47 +03:00 committed by GitHub
parent 761d82d992
commit a507b37b8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,50 +1,52 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head>
<head> <title>Get Codex</title>
<style> <style>
html * { html * {
font-size: 14px; font-size: 14px;
line-height: 1.5; line-height: 1.5;
color: black; color: black;
font-family: monospace; font-family: monospace;
} }
</style> </style>
</head> </head>
<body> <body>
<h1>Install Codex</h3> <h3>
Get Codex
</h3>
<p> <p>
<span style="color:grey;"> <span style="color:grey;">
# Install latest Codex # latest version
</span> </span>
<br> <br>
curl -s https://get.codex.storage/install.sh | bash curl -s https://get.codex.storage/install.sh | bash
</p> </p>
<p> <p>
<span style="color:grey;"> <span style="color:grey;">
# Install specific version of Codex # specific version
</span> </span>
<br> <br>
curl -s https://get.codex.storage/install.sh | VERSION=0.1.7 bash curl -s https://get.codex.storage/install.sh | VERSION=0.1.7 bash
</p> </p>
<p> <p>
<span style="color:grey;"> <span style="color:grey;">
# Install latest Codex with cirdl # latest codex and cirdl
</span> </span>
<br> <br>
curl -s https://get.codex.storage/install.sh | INSTALL_CIRDL=true bash curl -s https://get.codex.storage/install.sh | INSTALL_CIRDL=true bash
</p> </p>
<p> <p>
<span style="color:grey;"> <span style="color:grey;">
# On Windows with msys2 install Codex with required libraries # codex with required libraries on Windows with msys2
</span> </span>
<br> <br>
curl -s https://get.codex.storage/install.sh | WINDOWS_LIBS=true INSTALL_CIRDL=true bash curl -s https://get.codex.storage/install.sh | WINDOWS_LIBS=true INSTALL_CIRDL=true bash
</p> </p>
</body> </body>
</html> </html>