Skip to content

Commit d857548

Browse files
committed
Fix: project initialisation issue
1 parent 64aef70 commit d857548

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
Create a virtual environment and install dependencies:
1414

1515
```bash
16-
make venv
16+
make venv && source .venv/bin/activate
1717
make setup
1818
```
1919

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ all: lock install upgrade lint test build
2929
venv:
3030
@echo "🛠 Creating virtual environment..."
3131
$(SYSTEM_PYTHON) -m venv .venv
32-
@. ./.venv/bin/activate
33-
@echo "✅ virtual environment created."
32+
@echo "✅ virtual environment created. Activate it with:"
33+
@echo " source .venv/bin/activate"
3434

3535
# Lock: Generates requirements.txt from pyproject.toml
3636
.PHONY: lock

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Python Project Blueprint
66

77
## Development
88

9+
Please read the [DEVELOPMENT.md](./DEVELOPMENT.md) for development instructions.
10+
911
Check the [Makefile](./Makefile) for automation as the initial step, it defines all project commands.
1012

1113
### Make Commands

0 commit comments

Comments
 (0)