Skip to content

Commit e8c91e5

Browse files
committed
improve ark new and readme
1 parent 25b5572 commit e8c91e5

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ htmlcov/
2424

2525
# PID files
2626
projects/*/.pid
27+
projects/
2728

2829
# Project configs contain secrets (telegram tokens, paths)
2930
projects/*/config.yaml

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ The loop repeats until the score reaches the acceptance threshold — or you
114114

115115
## Quick Start
116116

117+
First, create and activate a Python virtual environment using your preferred tool (conda, uv, venv, etc.).
118+
117119
```bash
118120
# 1. Install
119121
pip install -e .

ark/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1160,7 +1160,7 @@ def _cmd_new_wizard(args, name: str, project_dir: Path, pdf_spec: dict):
11601160
# ── Step 1: Code Directory ────────────────────────────────
11611161
_wizard_step_header(1, "Code Directory")
11621162
print(" Where is your research code located?")
1163-
default_code_dir = str(Path.home() / name)
1163+
default_code_dir = str((Path.cwd() / "projects" / name).resolve())
11641164
code_dir = prompt_input("Code directory", default_code_dir)
11651165
code_dir = os.path.expanduser(code_dir)
11661166

0 commit comments

Comments
 (0)