mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-12-26 05:52:36 +00:00
* perf: initial * perf: basic finished * perf: depend * perf: Update Dockerfile with new base image tag * perf: Add user report api * perf: Update Dockerfile with new base image tag * perf: Use user report api * perf: Update Dockerfile with new base image tag * perf: user login report * perf: Update Dockerfile with new base image tag * perf: user change password * perf: change password dashboard * perf: Update Dockerfile with new base image tag * perf: Translate * perf: asset api * perf: asset activity * perf: Asset report * perf: add charts_map * perf: account report * perf: Translate * perf: account automation * perf: Account automation * perf: title * perf: Update Dockerfile with new base image tag --------- Co-authored-by: ibuler <ibuler@qq.com> Co-authored-by: feng <1304903146@qq.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: wangruidong <940853815@qq.com> Co-authored-by: feng626 <57284900+feng626@users.noreply.github.com>
27 lines
1.1 KiB
Bash
27 lines
1.1 KiB
Bash
#!/bin/bash
|
|
BASE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
|
|
PROJECT_DIR=$(dirname "$BASE_DIR")
|
|
|
|
echo "1. 安装依赖"
|
|
brew install libtiff libjpeg webp little-cms2 openssl gettext git \
|
|
git-lfs libxml2 libxmlsec1 pkg-config postgresql freetds openssl \
|
|
libffi freerdp poppler
|
|
pip install daphne==4.0.0 channels channels-redis
|
|
|
|
echo "2. 下载 IP 数据库"
|
|
ip_db_path="${PROJECT_DIR}/apps/common/utils/geoip/GeoLite2-City.mmdb"
|
|
wget "https://download.jumpserver.org/files/GeoLite2-City.mmdb" -O "${ip_db_path}"
|
|
|
|
if ! uname -a | grep 'ARM64' &> /dev/null;then
|
|
exit 0
|
|
fi
|
|
|
|
echo "4. For Apple processor"
|
|
LDFLAGS="-L$(brew --prefix freetds)/lib -L$(brew --prefix openssl@1.1)/lib" CFLAGS="-I$(brew --prefix freetds)/include" pip install $(grep 'pymssql' requirements.txt)
|
|
|
|
|
|
echo "5. Install Ansible Receptor"
|
|
export RECEPTOR_VERSION=v1.4.5
|
|
export ARCH=`arch`
|
|
wget -O ${TMPDIR}receptor.tar.gz https://github.com/ansible/receptor/releases/download/${RECEPTOR_VERSION}/receptor_${RECEPTOR_VERSION/v/}_darwin_${ARCH}.tar.gz
|
|
tar -xf ${TMPDIR}receptor.tar.gz -C /opt/homebrew/bin/ |