-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (44 loc) · 2.11 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Custom CLI Documentation</title>
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="./css/header.css">
</head>
<body>
<!-- Navigation Menu -->
<nav>
<ul>
<li><a href="index.html" style="color: #50fa7b;">Home</a></li>
<li><a href="cli.html">CLI Interface</a></li>
<li><a href="command_creator.html">Command Creator</a></li>
</ul>
</nav>
<h1>Custom Command-Line Interface (CLI) Project</h1>
<p>Welcome to the Custom CLI project! This project provides a versatile command-line interface implemented in JavaScript, along with a GUI-based Command Creator to build custom commands and sub-commands.</p>
<h2>Features</h2>
<ul>
<li>Interactive CLI with support for frameworks and self-executing commands.</li>
<li>Dynamic command hierarchy with infinite nesting of sub-commands.</li>
<li>Command history navigation using the up and down arrow keys.</li>
<li>Tree-structured help display for easy navigation of commands.</li>
<li>Dark Dracula theme inspired by PyCharm for a comfortable user experience.</li>
<li>GUI-based Command Creator to build and generate custom commands.</li>
</ul>
<h2>Get Started</h2>
<p>Choose an option below to explore the project:</p>
<ul>
<li><a href="cli.html">Launch the CLI Interface</a></li>
<li><a href="command_creator.html">Open the Command Creator</a></li>
</ul>
<h2>Documentation</h2>
<p>For detailed instructions on how to use the CLI and Command Creator, refer to the <a href="README.md">README</a> file.</p>
<h2>About the Project</h2>
<p>This project was developed to provide a flexible and extensible command-line interface that can be easily customized to suit various needs. The Command Creator allows users to build their own commands with specific handlers and integrate them into the CLI seamlessly.</p>
<p>I hope you find this tool useful and enjoy exploring its capabilities!</p>
<footer>
<p>© 2024-10-14 Made for 🏳 With Chatgpt o1-preview <a href="https://github.com/safaritrader" style="color: #f8f8f2 !important;">Hassan Safari</a></p>
</footer>
</body>
</html>