fix: built applied to langflow_backend instead of langflow

This commit is contained in:
Gabriel Almeida 2023-03-13 17:13:07 -03:00
commit dc6b69d065
9 changed files with 1410 additions and 1337 deletions

3
.gitignore vendored
View file

@ -6,6 +6,9 @@ yarn-debug.log*
yarn-error.log*
lerna-debug.log*
# Mac
.DS_Store
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

View file

@ -29,7 +29,9 @@ build_frontend:
build:
make install_frontend
make build_frontend
poetry build --format sdist
cp -r langflow/frontend/build langflow/backend/langflow_backend/frontend
cd langflow/backend && poetry build --format sdist
rm -rf dist && mv langflow/backend/dist/ dist
help:
@echo '----'

View file

@ -1 +0,0 @@
from langflow_backend.interface.loading import load_flow_from_json

View file

@ -4,6 +4,9 @@ __pycache__/
*$py.class
notebooks
# frontend
langflow_backend/frontend
# C extensions
*.so

View file

@ -0,0 +1 @@
from langflow_backend.interface.loading import load_flow_from_json

View file

@ -5,7 +5,7 @@ import typer
from fastapi.staticfiles import StaticFiles
from pathlib import Path
from langflow.server import LangflowApplication
from langflow_backend.server import LangflowApplication
def serve(
@ -15,7 +15,7 @@ def serve(
app = create_app()
# get the directory of the current file
path = Path(__file__).parent
static_files_dir = path / "frontend/build"
static_files_dir = path / "frontend"
app.mount(
"/",
StaticFiles(directory=static_files_dir, html=True),

File diff suppressed because it is too large Load diff

View file

@ -6,6 +6,10 @@ authors = ["Ibis Prevedello <ibiscp@gmail.com>", "Gabriel Almeida <gabrielf.alme
packages = [
{ include = "langflow_backend" },
]
include = ["frontend/build/*", "frontend/build/**/*"]
[tool.poetry.scripts]
langflow = "langflow_backend.__main__:main"
[tool.poetry.dependencies]
python = "^3.9"
@ -16,6 +20,8 @@ beautifulsoup4 = "^4.11.2"
google-search-results = "^2.4.1"
google-api-python-client = "^2.79.0"
langchain = {git = "https://github.com/ibiscp/langchain.git", rev = "ibis"}
typer = "^0.7.0"
gunicorn = "^20.1.0"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"