mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-23 06:37:15 +00:00
chg: [AIL logo UI]
This commit is contained in:
parent
bd534236d0
commit
e1d1124396
7 changed files with 51 additions and 40 deletions
45
install_virtualenv.sh
Executable file
45
install_virtualenv.sh
Executable file
|
@ -0,0 +1,45 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# halt on errors
|
||||||
|
set -e
|
||||||
|
|
||||||
|
## bash debug mode togle below
|
||||||
|
#set -x
|
||||||
|
|
||||||
|
if [ -z "$VIRTUAL_ENV" ]; then
|
||||||
|
|
||||||
|
virtualenv -p python3 AILENV
|
||||||
|
|
||||||
|
echo export AIL_HOME=$(pwd) >> ./AILENV/bin/activate
|
||||||
|
echo export AIL_BIN=$(pwd)/bin/ >> ./AILENV/bin/activate
|
||||||
|
echo export AIL_FLASK=$(pwd)/var/www/ >> ./AILENV/bin/activate
|
||||||
|
echo export AIL_REDIS=$(pwd)/redis/src/ >> ./AILENV/bin/activate
|
||||||
|
echo export AIL_ARDB=$(pwd)/ardb/src/ >> ./AILENV/bin/activate
|
||||||
|
|
||||||
|
. ./AILENV/bin/activate
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
pip3 install -U pip
|
||||||
|
pip3 install 'git+https://github.com/D4-project/BGP-Ranking.git/@7e698f87366e6f99b4d0d11852737db28e3ddc62#egg=pybgpranking&subdirectory=client'
|
||||||
|
pip3 install -U -r requirements.txt
|
||||||
|
|
||||||
|
# Pyfaup
|
||||||
|
pushd faup/src/lib/bindings/python/
|
||||||
|
python3 setup.py install
|
||||||
|
popd
|
||||||
|
|
||||||
|
# Py tlsh
|
||||||
|
pushd tlsh/py_ext
|
||||||
|
python3 setup.py build
|
||||||
|
python3 setup.py install
|
||||||
|
|
||||||
|
# Download the necessary NLTK corpora and sentiment vader
|
||||||
|
HOME=$(pwd) python3 -m textblob.download_corpora
|
||||||
|
python3 -m nltk.downloader vader_lexicon
|
||||||
|
python3 -m nltk.downloader punkt
|
||||||
|
popd
|
||||||
|
|
||||||
|
pushd ${AIL_FLASK}
|
||||||
|
./update_thirdparty.sh
|
||||||
|
popd
|
|
@ -85,19 +85,9 @@ if [ ! -f configs/core.cfg ]; then
|
||||||
cp configs/core.cfg.sample configs/core.cfg
|
cp configs/core.cfg.sample configs/core.cfg
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z "$VIRTUAL_ENV" ]; then
|
# create AILENV + intall python packages
|
||||||
|
./install_virtualenv.sh
|
||||||
|
|
||||||
virtualenv -p python3 AILENV
|
|
||||||
|
|
||||||
echo export AIL_HOME=$(pwd) >> ./AILENV/bin/activate
|
|
||||||
echo export AIL_BIN=$(pwd)/bin/ >> ./AILENV/bin/activate
|
|
||||||
echo export AIL_FLASK=$(pwd)/var/www/ >> ./AILENV/bin/activate
|
|
||||||
echo export AIL_REDIS=$(pwd)/redis/src/ >> ./AILENV/bin/activate
|
|
||||||
echo export AIL_ARDB=$(pwd)/ardb/src/ >> ./AILENV/bin/activate
|
|
||||||
|
|
||||||
. ./AILENV/bin/activate
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
pushd ${AIL_BIN}helper/gen_cert
|
pushd ${AIL_BIN}helper/gen_cert
|
||||||
./gen_root.sh
|
./gen_root.sh
|
||||||
|
@ -109,32 +99,8 @@ popd
|
||||||
cp ${AIL_BIN}helper/gen_cert/server.crt ${AIL_FLASK}server.crt
|
cp ${AIL_BIN}helper/gen_cert/server.crt ${AIL_FLASK}server.crt
|
||||||
cp ${AIL_BIN}helper/gen_cert/server.key ${AIL_FLASK}server.key
|
cp ${AIL_BIN}helper/gen_cert/server.key ${AIL_FLASK}server.key
|
||||||
|
|
||||||
pushd ${AIL_FLASK}
|
|
||||||
./update_thirdparty.sh
|
|
||||||
popd
|
|
||||||
|
|
||||||
mkdir -p $AIL_HOME/PASTES
|
mkdir -p $AIL_HOME/PASTES
|
||||||
|
|
||||||
pip3 install -U pip
|
|
||||||
pip3 install 'git+https://github.com/D4-project/BGP-Ranking.git/@7e698f87366e6f99b4d0d11852737db28e3ddc62#egg=pybgpranking&subdirectory=client'
|
|
||||||
pip3 install -U -r requirements.txt
|
|
||||||
|
|
||||||
# Pyfaup
|
|
||||||
pushd faup/src/lib/bindings/python/
|
|
||||||
python3 setup.py install
|
|
||||||
popd
|
|
||||||
|
|
||||||
# Py tlsh
|
|
||||||
pushd tlsh/py_ext
|
|
||||||
python3 setup.py build
|
|
||||||
python3 setup.py install
|
|
||||||
|
|
||||||
# Download the necessary NLTK corpora and sentiment vader
|
|
||||||
HOME=$(pwd) python3 -m textblob.download_corpora
|
|
||||||
python3 -m nltk.downloader vader_lexicon
|
|
||||||
python3 -m nltk.downloader punkt
|
|
||||||
popd
|
|
||||||
|
|
||||||
#Create the file all_module and update the graph in doc
|
#Create the file all_module and update the graph in doc
|
||||||
$AIL_HOME/doc/generate_modules_data_flow_graph.sh
|
$AIL_HOME/doc/generate_modules_data_flow_graph.sh
|
||||||
|
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 137 KiB |
|
@ -62,7 +62,7 @@
|
||||||
|
|
||||||
|
|
||||||
<form class="form-signin" action="{{ url_for('root.change_password')}}" autocomplete="off" method="post">
|
<form class="form-signin" action="{{ url_for('root.change_password')}}" autocomplete="off" method="post">
|
||||||
<img class="mb-4" src="{{ url_for('static', filename='image/AIL-logo.png')}}" width="300">
|
<img class="mb-4" src="{{ url_for('static', filename='image/ail-project.png')}}" width="300">
|
||||||
<h1 class="h3 mb-3 text-secondary">Change Password</h1>
|
<h1 class="h3 mb-3 text-secondary">Change Password</h1>
|
||||||
<label for="inputPassword1" class="sr-only">Password</label>
|
<label for="inputPassword1" class="sr-only">Password</label>
|
||||||
<input type="password" id="inputPassword1" name="password1" class="form-control {% if error %}is-invalid{% endif %}" placeholder="Password" autocomplete="new-password" required autofocus>
|
<input type="password" id="inputPassword1" name="password1" class="form-control {% if error %}is-invalid{% endif %}" placeholder="Password" autocomplete="new-password" required autofocus>
|
||||||
|
|
|
@ -67,7 +67,7 @@
|
||||||
|
|
||||||
|
|
||||||
<form class="form-signin" action="{{ url_for('root.login')}}" method="post">
|
<form class="form-signin" action="{{ url_for('root.login')}}" method="post">
|
||||||
<img class="mb-4" src="{{ url_for('static', filename='image/AIL-logo.png')}}" width="300">
|
<img class="mb-4" src="{{ url_for('static', filename='image/ail-project.png')}}" width="300">
|
||||||
<h1 class="h3 mb-3 text-secondary">Please sign in</h1>
|
<h1 class="h3 mb-3 text-secondary">Please sign in</h1>
|
||||||
<label for="inputEmail" class="sr-only">Email address</label>
|
<label for="inputEmail" class="sr-only">Email address</label>
|
||||||
<input type="email" id="inputEmail" name="username" class="form-control" placeholder="Email address" required autofocus>
|
<input type="email" id="inputEmail" name="username" class="form-control" placeholder="Email address" required autofocus>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<nav class="navbar navbar-expand-xl navbar-dark bg-dark">
|
<nav class="navbar navbar-expand-xl navbar-dark bg-dark">
|
||||||
<a class="navbar-brand" href="{{ url_for('dashboard.index') }}">
|
<a class="navbar-brand" href="{{ url_for('dashboard.index') }}">
|
||||||
<img src="{{ url_for('static', filename='image/ail-icon.png')}}" alt="AIL" style="width:80px;">
|
<img src="{{ url_for('static', filename='image/ail-project-inverted.png')}}" alt="AIL" style="width:80px;">
|
||||||
</a>
|
</a>
|
||||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
<span class="navbar-toggler-icon"></span>
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
<!-- /#side-menu -->
|
<!-- /#side-menu -->
|
||||||
</div>
|
</div>
|
||||||
<!-- /.sidebar-collapse -->
|
<!-- /.sidebar-collapse -->
|
||||||
<a href="{{ url_for('dashboard.index') }}"><img src="{{ url_for('static', filename='image/AIL.png') }}" /></a>
|
<a href="{{ url_for('dashboard.index') }}"><img src="{{ url_for('static', filename='image/ail-project.png') }}" style="width:200px;"/></a>
|
||||||
</div>
|
</div>
|
||||||
<!-- /.navbar-static-side -->
|
<!-- /.navbar-static-side -->
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue