1. 二開目標(biāo)
- 支持阿里mc數(shù)據(jù)源
- 對(duì)接公司數(shù)據(jù)地圖進(jìn)行數(shù)據(jù)權(quán)限管理
- 對(duì)支持的圖表進(jìn)行擴(kuò)展
2. 相關(guān)資料
git倉庫地址
https://blog.csdn.net/womeng2009/article/details/106669458
參考資料地址
https://blog.csdn.net/womeng2009/article/details/106669458
3. redash功能與預(yù)期功能對(duì)標(biāo)
https://alidocs.dingtalk.com/i/nodes/6wPdlBDrQk4JY0EzYNkAVXKx72oEGeL5
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash
# reopen the window
NVM_NODEJS_ORG_MIRROR=http://nodejs.org/dist nvm ls-remote
NVM_NODEJS_ORG_MIRROR=http://nodejs.org/dist nvm install 14.16.1
npm install --global yarn@1.22.10
yarn --frozen-lockfile
yarn build
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get install python3.7
whereis python3.7
whereis python3.10
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.7 2
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.10 1
sudo update-alternatives --config python
sudo apt install python3-pip
sudo apt install python3.7-venv
sudo apt remove python3.7-venv
python3 -m venv redash-env
source redash-env/bin/activate
sudo apt-get install build-essential libssl-dev libffi-dev python3-dev
sudo apt-get install unixodbc-dev
#pycrypto https://stackoverflow.com/questions/50080459/failed-installing-pycrypto-with-pip
sudo apt-get install build-essential libssl-dev libffi-dev python3-dev
#psycopg https://stackoverflow.com/questions/55581941/getting-error-when-installing-psycopg2-2-8-1
sudo apt-get install libpq-dev
#mysqlclient https://pypi.org/project/mysqlclient/1.3.14/
sudo apt-get install python-dev default-libmysqlclient-dev