More instructions for CLAUDE
This commit is contained in:
parent
ac16bb9dab
commit
fcc2cdd6d4
|
@ -11,7 +11,8 @@ This is a personal agenda web application built with Flask that tracks various e
|
||||||
|
|
||||||
## Python Environment
|
## Python Environment
|
||||||
- Always use `python3` directly, never `python`
|
- Always use `python3` directly, never `python`
|
||||||
- Run `black` code formatter after creating or modifying Python files
|
- Run `black` code formatter on modified code after creating or modifying Python files
|
||||||
|
- Avoid running `black .`
|
||||||
- Main entry point: `python3 web_view.py` (Flask app on port 5000)
|
- Main entry point: `python3 web_view.py` (Flask app on port 5000)
|
||||||
- Tests: Use `pytest` (tests in `/tests/` directory)
|
- Tests: Use `pytest` (tests in `/tests/` directory)
|
||||||
|
|
||||||
|
@ -26,4 +27,4 @@ This is a personal agenda web application built with Flask that tracks various e
|
||||||
## Git Workflow
|
## Git Workflow
|
||||||
- Avoid committing unrelated untracked files (e.g., `node_modules/`, build artifacts)
|
- Avoid committing unrelated untracked files (e.g., `node_modules/`, build artifacts)
|
||||||
- Only commit relevant project files
|
- Only commit relevant project files
|
||||||
- Personal data directory (`personal-data/`) is excluded from git
|
- Personal data directory (`personal-data/`) is excluded from git
|
||||||
|
|
Loading…
Reference in a new issue