-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.html
More file actions
executable file
·145 lines (130 loc) · 3.94 KB
/
install.html
File metadata and controls
executable file
·145 lines (130 loc) · 3.94 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JGW6MNEWGH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-JGW6MNEWGH');
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>AbEC | Install</title>
<script src="scramble.js"></script>
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script>
MathJax = {
tex: {
tags: 'ams' // should be 'ams', 'none', or 'all'
}
};
</script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js"></script>
<link rel="icon" href="images/abec-logo-bg.png" />
<link rel="shortcut icon" href="images/abec-logo-bg.png" />
<link rel="stylesheet" type="text/css" href="css/style2.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/hack-font/3.3.0/web/hack.min.css"
integrity="sha512-XgCw4Srl8lC1ECwcaHwAU0WnxQwHkqmInzg9wJLtGB7DRuMaXPuK2k9WJ2AwRDGdrgK9eJpZl2hUlLi2WQssmw=="
crossorigin="anonymous"
/>
<style>
h1 {
text-align: center;
background: #EEEEEE;
padding: .2em 1em;
border-top: 3px solid #666666;
border-bottom: 3px solid #999999;
}
</style>
</head>
<body>
<section>
<pre>
<div style="float: left">INSTALL(1)</div><div style="float: right">INSTALL(1)</div><div style="margin: 0 auto; width: 100%; text-align: center"><span id="top">AbEC - How to install</span></div>
<div id="google_translate_element"></div>
<span style="color: green"><</span> <a href="index.html">[ Home ]</a>
<script type="text/javascript">
function setCookie(key, value, expiry) {
var expires = new Date();
expires.setTime(expires.getTime() + (expiry * 24 * 60 * 60 * 1000));
document.cookie = key + '=' + value + ';expires=' + expires.toUTCString();
}
</script>
<div class="myHead">
<span id="myName" >[<span id="dollar">~</span>]</span>$<span id="top"> Requirements</span>
</div>
<div id="divName">
The only requirement to install and use the framework is to have the git installed in the computer. The following the command does the job.
<br>
<div>
<hr>
<code>
<span style="color: green">$</span><span id="dollar"> sudo apt install git</span><br>
</code>
<hr>
</div>
</div>
<div class="myHead">
<span id="myName" >[<span id="dollar">~</span>]</span>$<span id="top"> AbEC</span>
</div>
<div id="divSynopsis">
Now, to use the framework, we just need to clone the git repository on our machine. To do that, you can use the follownig command:
<br>
<div>
<hr>
<code>
<span style="color: green">$</span><span id="dollar"> git clone https://github.com/AbEC-EC/AbEC.git</span><br>
</code>
<hr>
</div>
<br>
Then, enter in the AbEC directory created and execute the install.sh script, this will install all the needed dependencies to run the framework.
<br>
<div>
<hr>
<code>
<span style="color: green">$</span><span id="dollar"> cd AbEC</span><br>
</code>
<hr>
</div>
<div>
<hr>
<code>
<span style="color: green">$</span><span id="dollar"> ./install.sh</span><br>
</code>
<hr>
</div>
<br>
Once installed the dependencies, we can start to use the framework going to the abec directory and executing the app.sh:
<br>
<div>
<hr>
<code>
<span style="color: green">$</span><span id="dollar"> cd abec</span><br>
</code>
<hr>
</div>
<div>
<hr>
<code>
<span style="color: green">$</span><span id="dollar"> ./app.sh</span><br>
</code>
<hr>
</div>
<br>
For more information about how to use, please <a href="use.html">come here</a>.
<br>
<br>
</div>
<span style="color: white">Be free to use this framework.</span><br>
<span style="color: green">AbEC © 2023.</span>
<div class="myHead"><blink></blink></div>
</div>
</pre>
</section>
</body>
</html>