mirror of
https://github.com/ail-project/ail-framework.git
synced 2025-02-12 12:26:23 +00:00
Merge pull request #146 from PaulSec/master
refactor (without deleting)
This commit is contained in:
commit
8460131f24
2 changed files with 68 additions and 68 deletions
|
@ -34,7 +34,7 @@ Features
|
||||||
Installation
|
Installation
|
||||||
------------
|
------------
|
||||||
|
|
||||||
Type these command lines for a fully automated installation and start AIL framework
|
Type these command lines for a fully automated installation and start AIL framework:
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/CIRCL/AIL-framework.git
|
git clone https://github.com/CIRCL/AIL-framework.git
|
||||||
cd AIL-framework
|
cd AIL-framework
|
||||||
|
@ -46,6 +46,7 @@ cd ~/AIL-framework/
|
||||||
cd bin/
|
cd bin/
|
||||||
./LAUNCH.sh
|
./LAUNCH.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
The default [installing_deps.sh](./installing_deps.sh) is for Debian and Ubuntu based distributions. For Arch
|
The default [installing_deps.sh](./installing_deps.sh) is for Debian and Ubuntu based distributions. For Arch
|
||||||
linux based distributions, you can replace it with [installing_deps_archlinux.sh](./installing_deps_archlinux.sh).
|
linux based distributions, you can replace it with [installing_deps_archlinux.sh](./installing_deps_archlinux.sh).
|
||||||
|
|
||||||
|
@ -53,6 +54,7 @@ There is also a [Travis file](.travis.yml) used for automating the installation
|
||||||
|
|
||||||
Docker Quick Start (Ubuntu 16.04 LTS)
|
Docker Quick Start (Ubuntu 16.04 LTS)
|
||||||
------------
|
------------
|
||||||
|
|
||||||
1. Install Docker
|
1. Install Docker
|
||||||
```bash
|
```bash
|
||||||
sudo su
|
sudo su
|
||||||
|
|
|
@ -73,7 +73,6 @@ function update_values() {
|
||||||
curr_data = data_for_processed_paste["global"];
|
curr_data = data_for_processed_paste["global"];
|
||||||
all_res.push(fetch_data("global", curr_data, "global"));
|
all_res.push(fetch_data("global", curr_data, "global"));
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
for(d_i in list_feeder) {
|
for(d_i in list_feeder) {
|
||||||
if(list_feeder[d_i] == "global") {
|
if(list_feeder[d_i] == "global") {
|
||||||
continue;
|
continue;
|
||||||
|
@ -86,7 +85,6 @@ function update_values() {
|
||||||
curr_data = data_for_processed_paste[dataset];
|
curr_data = data_for_processed_paste[dataset];
|
||||||
all_res.push(fetch_data(dataset, curr_data, list_feeder[d_i]));
|
all_res.push(fetch_data(dataset, curr_data, list_feeder[d_i]));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
return all_res;
|
return all_res;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue