Skip to content

Commit

Permalink
Merge with develop
Browse files Browse the repository at this point in the history
  • Loading branch information
uweseimet committed Oct 17, 2023
1 parent 9ba2836 commit cb90b51
Show file tree
Hide file tree
Showing 3 changed files with 178 additions and 81 deletions.
8 changes: 7 additions & 1 deletion easyinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,13 @@ echo -e $logo

CONNECT_TYPE="FULLSPEC"
COMPILER="clang++"
CORES=1
MEM=$(grep MemTotal /proc/meminfo | awk '{print $2}')
CORES=`expr $MEM / 450000`
if [ $CORES -gt $(nproc) ]; then
CORES=$(nproc)
elif [ $CORES -lt 1 ]; then
CORES=1
fi
USER=$(whoami)
BASE=$(dirname "$(readlink -f "${0}")")
CPP_PATH="$BASE/cpp"
Expand Down
5 changes: 3 additions & 2 deletions python/web/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
bjoern==3.2.2
Flask==2.3.2
Flask==2.3.3
Jinja2==3.1.2
protobuf==3.20.2
requests==2.31.0
simplepam==0.1.5
flask_babel==2.0.0
ua-parser==0.16.1
vcgencmd==0.1.1
vcgencmd==0.1.1
werkzeug==2.3.7
Loading

0 comments on commit cb90b51

Please sign in to comment.