fix: [install_dep] create default user

This commit is contained in:
Terrtia 2019-06-24 13:57:08 +02:00
parent cec58e7d79
commit e090b664ff
No known key found for this signature in database
GPG key ID: 1E1B1F50D84613D0

View file

@ -99,9 +99,18 @@ if [ -z "$VIRTUAL_ENV" ]; then
fi fi
pushd ${AIL_BIN}/helper/gen_cert
./gen_root.sh
wait
./gen_cert.sh
wait
popd
cp ${AIL_BIN}/helper/gen_cert/server.crt ${AIL_FLASK}/server.crt
cp ${AIL_BIN}/helper/gen_cert/server.key ${AIL_FLASK}/server.key
pushd var/www/ pushd var/www/
./update_thirdparty.sh ./update_thirdparty.sh
python3 create_default_user.py
popd popd
mkdir -p $AIL_HOME/PASTES mkdir -p $AIL_HOME/PASTES
@ -124,6 +133,23 @@ python3 setup.py install
HOME=$(pwd) python3 -m textblob.download_corpora HOME=$(pwd) python3 -m textblob.download_corpora
python3 -m nltk.downloader vader_lexicon python3 -m nltk.downloader vader_lexicon
python3 -m nltk.downloader punkt 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
#### DB SETUP ####
# LAUNCH ARDB
bash ${AIL_BIN}/LAUNCH.sh -lav &
wait
echo ""
# create default user
pushd ${AIL_FLASK}
python3 create_default_user.py
popd
bash ${AIL_BIN}/LAUNCH.sh -k &
wait
echo ""