* refactor(base.py): handle ImportError when importing is_pre_release function from langflow.version module to prevent crashing the application feat(base.py): dynamically determine if the version is a pre-release version by checking for 'a', 'b', or 'rc' in the version number * fix(Dockerfile): add missing backslash to ensure proper chaining of commands * refactor: Update get_lifespan function to handle ImportError and dynamically determine the version number The get_lifespan function in main.py has been updated to handle ImportError when importing the __version__ attribute from the langflow.version module. If the import fails, the version number is dynamically determined using the importlib.metadata.version function. This change ensures that the application does not crash when the langflow.version module is not available. Note: This commit message follows the convention used in the recent user commits. * chore: Add langflow-pre.db and langflow.db to .dockerignore * chore: Update .dockerignore to include langflow-pre.db and langflow.db * refactor: Add folder_id column to flow table and handle folder column migration This commit adds the folder_id column to the flow table in the database. It also handles the migration of the folder column to the new folder_id column. This change allows for better organization and management of flows within folders. Note: This commit message follows the convention used in the recent user commits. * refactor: Update Dockerfiles to include user creation and environment variable This commit updates the Dockerfiles to include the creation of a user with UID 1000 and the necessary permissions for the /app/langflow directory. It also adds the user's local bin directory to the PATH environment variable. This change improves the security and isolation of the application within the container. Note: This commit message follows the convention used in the recent user commits. |
||
|---|---|---|
| .. | ||
| .dockerignore | ||
| build_and_push.Dockerfile | ||
| build_and_push_base.Dockerfile | ||
| cdk-docker-compose.yml | ||
| cdk.Dockerfile | ||
| container-cmd-cdk.sh | ||
| dev.Dockerfile | ||
| render.Dockerfile | ||