https://github.com/mhdeeb/dash-query-builder-2
https://github.com/mhdeeb/dash-query-builder-2
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mhdeeb/dash-query-builder-2
- Owner: mhdeeb
- License: other
- Created: 2025-01-28T12:40:35.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-16T05:16:47.000Z (over 1 year ago)
- Last Synced: 2025-11-05T16:11:52.606Z (8 months ago)
- Language: CSS
- Size: 13.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dash-query-builder-2
A fork from dash-query-builder
## Install
```shell
pip install dqb2
```
## Development
### Getting Started
1. Create a new python environment:
```shell
python -m venv venv
. venv/bin/activate
```
_Note: venv\Scripts\activate for windows_
2. Install python dependencies:
```shell
pip install -r requirements.txt
```
3. Install npm packages:
1. Optional: use [nvm](https://github.com/nvm-sh/nvm) to manage node version:
```shell
nvm install
nvm use
```
2. Install:
```shell
npm install
```
4. Build:
```shell
npm run build
```
### Component Code
### Publish
If publish on npm:
```shell
npm build
npm publish
```
### Justfile
Alternatively, use the provided [just](https://github.com/casey/just) commands:
1. Create a Python environment from previous step 1 and install:
```shell
just install
```
2. Build
```shell
just build
```
3. Publish
```shell
just publish
```
4. See all commands with `just -l`