Skip to content

Commit

Permalink
Merge pull request #19 from baloise/main
Browse files Browse the repository at this point in the history
PR for new release build
  • Loading branch information
robbizbal authored Oct 31, 2024
2 parents 3ca0f2a + fbacee7 commit cfeffac
Show file tree
Hide file tree
Showing 26 changed files with 6,124 additions and 15,466 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -162,4 +162,5 @@ cython_debug/
#.idea/

/.install.stamp
/poetry.lock
/poetry.lock
/tmp
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ LABEL maintainer="culmat, trichie, robbizbal" \
org.opencontainers.image.description="Yo-Yo-Maskr application Docker image" \
version="0.1.0"

# set poetry environment variables
ARG POETRY_FLAGS="--without dev"

# set default environment variables
ENV OLLAMA_BASE_URL=http://localhost:11434 \
OLLAMA_MODEL=llama3.2:latest \
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ install: $(INSTALL_STAMP)

$(INSTALL_STAMP): pyproject.toml
@if [ -z $(POETRY) ]; then echo "Poetry could not be found. Please install it."; exit 2; fi
$(POETRY) install --without dev
$(POETRY) install $(POETRY_FLAGS)
touch $(INSTALL_STAMP)

# Clean target to remove temporary files and caches
Expand All @@ -39,6 +39,7 @@ clean:
cleaner:
$(MAKE) clean
rm -rf .venv
rm poetry.lock

# Lint target to run code linters
lint: $(INSTALL_STAMP)
Expand Down
Loading

0 comments on commit cfeffac

Please sign in to comment.