# fab-dash **Repository Path**: alitrack/fab-dash ## Basic Information - **Project Name**: fab-dash - **Description**: 把panel整合进Flask-AppBuilder - **Primary Language**: Python - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2022-11-08 - **Last Updated**: 2022-11-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: Flask, Bokeh ## README # fab-dash A minimum reproducible repository for embedding [panel](https://github.com/holoviz/panel) in [Flask App Builder](https://github.com/dpgaspar/Flask-AppBuilder). ## more apps support just put panel apps in apps folder, and test it with ```BASH panel serve apps/main.py ``` ## run it ```BASH python -m venv .venv source .vevn/bin/activate pip install -r requirements.txt export FLASK_APP=run.py flask fab create-admin flask run -p 8000 # or python run.py # better gunicorn -w 4 run:app --reload ```