Utilities for scripting project folders
- VS Code
- Git
- Python
See pro-analytics-01
For Windows PowerShell (change if using Mac/Linux). Verify that all required packages are included in requirements.txt (and have NOT been commented out).
py -m venv .venv
.\.venv\Scripts\activate
py -m pip install --upgrade pip setuptools wheel
py -m pip install --upgrade -r requirements.txt
Remember to activate your .venv (and install packages if they haven't been installed yet) before running files.
TODO: Change these to reflect your Python file names and remove this TODO.
py utils_case.py
py dirbot_case.py
git add .
git commit -m "custom message"
git push -u origin main
Custom implementation of the example project at datafun-02-project-setup