File tree Expand file tree Collapse file tree 2 files changed +10
-11
lines changed
Expand file tree Collapse file tree 2 files changed +10
-11
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1-
21SHELL := /bin/bash
3- REPO_NAME := agentic-ai-workflow
2+ export PATH := /usr/local/bin:$(PATH )
3+ export
44
55ifeq ($(OS ) ,Windows_NT)
6- PYTHON = python.exe
7- ACTIVATE_VENV = venv\Scripts\activate
6+ PYTHON : = python.exe
7+ ACTIVATE_VENV : = venv\Scripts\activate
88else
9- PYTHON = python3.13
10- ACTIVATE_VENV = source venv/bin/activate
9+ PYTHON : = python3.13
10+ ACTIVATE_VENV : = source venv/bin/activate
1111endif
12- PIP = $(PYTHON ) -m pip
12+ PIP : = $(PYTHON ) -m pip
1313
1414ifneq ("$(wildcard .env) ","")
15- include .env
15+ include .env
1616else
17- $(shell cp .env- example .env)
17+ $(shell cp .env. example .env)
1818endif
1919
2020.PHONY : analyze pre-commit init lint tear-down test build release
4444 $(PYTHON ) -m venv venv && \
4545 $(ACTIVATE_VENV ) && \
4646 $(PIP ) install --upgrade pip && \
47- $(PIP ) install -r requirements/base.txt && \
48- deactivate
47+ $(PIP ) install -r requirements/base.txt
4948
5049# ---------------------------------------------------------
5150# create python virtual environments for dev
You can’t perform that action at this time.
0 commit comments