Skip to content

Commit 6f9b805

Browse files
Adjust quick install guide since we are making a repository on the fly (#21)
* Update Quick start After verifying if we put it into wanted folders and if it works, automation builds upon changes. * Update README.md * Update README.md * Updated readme.md function to redirect to /share/doc/README.md * Run doc gen * RM genterated documents folder * bin/armbian-configng --dev --doc codespace * deleted: share/doc/armbian-configng/README.md * Revert "Updated readme.md function to redirect to /share/doc/README.md" This reverts commit db6f4f4. * modified: debian.conf path --------- Co-authored-by: Joey Turner <[email protected]>
1 parent c6348a3 commit 6f9b805

File tree

7 files changed

+69
-11
lines changed

7 files changed

+69
-11
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,16 @@
1111
## Quick start
1212
Run the following commands:
1313

14-
sudo apt install git
15-
cd ~/
16-
git clone https://github.com/armbian/configng.git
17-
cd configng
18-
./bin/armbian-configng --dev
14+
echo "deb [signed-by=/usr/share/keyrings/armbian.gpg] https://armbian.github.io/configng stable main" \
15+
| sudo tee /etc/apt/sources.list.d/armbian-development.list > /dev/null
16+
17+
armbian-configng --dev
1918

2019
If all goes well you should see the Text-Based User Inerface (TUI)
2120

2221
### To see a list of all functions and their descriptions, run the following command:
2322
~~~
24-
bash ~/configng/bin/armbian-configng -h
23+
armbian-configng -h
2524
~~~
2625
## Coding Style
2726
follow the following coding style:

debian.conf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
share:/usr/share/doc
2-
lib:/usr/lib/
3-
bin:/usr/bin/
1+
share:/usr/
2+
lib:/usr/
3+
bin:/usr/

share/armbian-configng/data/armbian-configng.csv renamed to share/doc/armbian-configng/armbian-configng.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ Function Name,Group Name,Description,Options,Category,Category Description
22
NMTUI,network,Network Manager.,none.,network,Network Wired wireless Bluetooth access point
33
Hello,system,Hello System.,none,system,System and Security
44
Bencharking,monitor,Armbian Monitor and Bencharking.,,system,System and Security
5+
Install,system,Armbian installer,none.,system,System and Security

share/armbian-configng/index.html renamed to share/doc/armbian-configng/armbian-configng.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html>
44
<head>
55
<title>
6-
Armbian index </title>
6+
Armbian armbian-configng </title>
77
<style>
88
body {
99
font-family: Arial, sans-serif;
@@ -26,7 +26,7 @@
2626
</head>
2727
<body>
2828
<header>
29-
<h1>index</h1>
29+
<h1>armbian-configng</h1>
3030
</header>
3131
<nav>
3232
<ul>
@@ -69,6 +69,14 @@ <h1>index</h1>
6969
"Options": "",
7070
"Category": "system",
7171
"Category Description": "System and Security"
72+
},
73+
{
74+
"Function Name": "Install",
75+
"Group Name": "system",
76+
"Description": "Armbian installer",
77+
"Options": "none.",
78+
"Category": "system",
79+
"Category Description": "System and Security"
7280
}
7381
] ;
7482
var data = jsonData;

share/armbian-configng/data/armbian-configng.json renamed to share/doc/armbian-configng/armbian-configng.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,13 @@
2222
"Options": "",
2323
"Category": "system",
2424
"Category Description": "System and Security"
25+
},
26+
{
27+
"Function Name": "Install",
28+
"Group Name": "system",
29+
"Description": "Armbian installer",
30+
"Options": "none.",
31+
"Category": "system",
32+
"Category Description": "System and Security"
2533
}
2634
]
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<style>
5+
body {
6+
background-color: #333;
7+
color: #fff;
8+
font-family: Arial, sans-serif;
9+
}
10+
table {
11+
border-collapse: collapse;
12+
width: 100%;
13+
}
14+
th, td {
15+
text-align: left;
16+
padding: 8px;
17+
}
18+
th {
19+
background-color: #4CAF50;
20+
color: white;
21+
}
22+
tr:nth-child(even) {color: black; background-color: #f2f2f2; }
23+
</style>
24+
</head>
25+
<body>
26+
<table>
27+
<thead>
28+
<tr>
29+
<th>Function Name</th>
30+
<th>Group Name</th>
31+
<th>Description</th>
32+
<th>Options</th>
33+
<th>Category</th>
34+
<th>Category Description</th>
35+
</tr>
36+
</thead>
37+
<tbody><tr><td>NMTUI</td><td>network</td><td>Network Manager.</td><td>none.</td><td>network</td><td>Network Wired wireless Bluetooth access point</td></tr><tr><td>Hello</td><td>system</td><td>Hello System.</td><td>none</td><td>system</td><td>System and Security</td></tr><tr><td>Bencharking</td><td>monitor</td><td>Armbian Monitor and Bencharking.</td><td></td><td>system</td><td>System and Security</td></tr><tr><td>Install</td><td>system</td><td>Armbian installer</td><td>none.</td><td>system</td><td>System and Security</td></tr>
38+
</tbody>
39+
</table>
40+
41+
</body>
42+
</html>

0 commit comments

Comments
 (0)