Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
chemik-bit authored Dec 7, 2023
1 parent 3a7af6c commit 9a1681d
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,25 +17,19 @@ test: ## run tests with pytest.
@echo "Tests executed."

# Set up the development environment
setup: install_poetry install_dependencies

# Install Poetry for dependency management
install_poetry:
setup:
pip install -U pip setuptools
pip install poetry
@echo "Poetry installed."

# Install project dependencies using Poetry
install_dependencies:
@echo "Installing project dependencies using Poetry."
cd SalesGPT && poetry install
@echo "Dependencies installed."

# Clean up the environment
clean:
@echo "Cleaning up..."
rm -rf $(VENV)
rm -rf SalesGPT
@echo "Environment cleaned up."

.PHONY: default setup install_poetry install_dependencies test clean

.PHONY: default setup test clean

0 comments on commit 9a1681d

Please sign in to comment.