-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge feat/support_indexed_search into MAJOR_CHANGE/new_front
- Loading branch information
Showing
40 changed files
with
1,862 additions
and
384 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
name: check backend | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build_backend_and_check_codestyle: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: set up python 3.10 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.10' | ||
|
||
- name: setup poetry and install dependencies | ||
run: | | ||
python -m pip install --upgrade pip poetry | ||
python -m poetry lock --no-update | ||
python -m poetry install --with lint --no-interaction | ||
working-directory: backend/df_designer | ||
|
||
- name: build wheel | ||
run: | | ||
python -m poetry build | ||
working-directory: backend/df_designer | ||
|
||
- name: run black codestyle | ||
run: | | ||
python -m poetry run black --line-length=120 --check . | ||
working-directory: backend/df_designer | ||
|
||
- name: run flake8 codestyle | ||
run: | | ||
ls | ||
bash ./bin/run_codestyle.sh DIFF_BRANCH=${BASE_BRANCH} | ||
env: | ||
BASE_BRANCH: ${{github.base_ref}} | ||
|
||
- name: run isort codestyle | ||
run: | | ||
python -m poetry run isort --line-length=120 --diff . | ||
working-directory: backend/df_designer | ||
|
||
test_backend: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: set up python 3.10 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.10' | ||
|
||
- name: setup poetry and install dependencies | ||
run: | | ||
python -m pip install --upgrade pip poetry | ||
python -m poetry lock --no-update | ||
python -m poetry install --with lint --no-interaction | ||
working-directory: backend/df_designer | ||
|
||
- name: build wheel | ||
run: | | ||
python -m poetry build | ||
working-directory: backend/df_designer | ||
|
||
- name: Create new project | ||
run: | | ||
python -m poetry run dflowd init --destination ../../ --no-input --overwrite-if-exists | ||
working-directory: backend/df_designer | ||
|
||
- name: run tests | ||
run: | | ||
python -m poetry install | ||
python -m poetry run pytest ../backend/df_designer/app/tests/ --verbose | ||
working-directory: df_designer_project |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: codestyle | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
check_backend_codestyle: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: set up python 3.10 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.10' | ||
|
||
- name: setup poetry and install dependencies | ||
run: | | ||
python -m pip install --upgrade pip poetry | ||
python -m poetry lock --no-update | ||
python -m poetry install --with lint --quiet --no-interaction | ||
working-directory: backend/df_designer | ||
|
||
- name: run black codestyle | ||
run: | | ||
python -m poetry run black --line-length=120 --check . | ||
working-directory: backend/df_designer | ||
|
||
- name: run flake8 codestyle | ||
run: | | ||
bash ./bin/run_codestyle.sh DIFF_BRANCH=${BASE_BRANCH} | ||
env: | ||
BASE_BRANCH: ${{github.base_ref}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Build Docker Images | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev | ||
pull_request: | ||
branches: | ||
- dev | ||
|
||
jobs: | ||
build_images: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: setup poetry and install dependencies | ||
run: | | ||
python -m pip install --upgrade pip poetry | ||
python -m poetry lock --no-update | ||
python -m poetry install --with lint --no-ansi --no-interaction | ||
working-directory: backend/df_designer | ||
|
||
- name: Create new project | ||
run: python -m poetry run dflowd init --destination ../../ --no-input --overwrite-if-exists | ||
working-directory: backend/df_designer | ||
|
||
- name: Build Frontend and Backend Images | ||
run: docker build -f Dockerfile --build-arg PROJECT_DIR=df_designer_project --target=runtime . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: front check | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build_and_check_frontend: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install bun | ||
run: npm install -g bun | ||
|
||
- name: Install dependencies | ||
run: bun install | ||
working-directory: frontend | ||
|
||
- name: Build frontend | ||
run: bun run build | ||
working-directory: frontend |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
from fastapi import APIRouter | ||
|
||
from app.api.api_v1.endpoints import bot, flows | ||
from app.api.api_v1.endpoints import bot, dff_services, flows | ||
from app.core.config import settings | ||
|
||
api_router = APIRouter() | ||
|
||
api_router.include_router(flows.router, prefix="/".join([settings.API_V1_STR, "flows"]), tags=["flows"]) | ||
api_router.include_router(dff_services.router, prefix="/".join([settings.API_V1_STR, "services"]), tags=["services"]) | ||
api_router.include_router(bot.router, prefix="/".join([settings.API_V1_STR, "bot"]), tags=["bot"]) |
Oops, something went wrong.