├── .gitignore ├── LICENSE ├── README.md ├── projects ├── funny-web │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── LICENSE │ ├── README.md │ ├── app.py │ ├── data.py │ ├── requirements.piptools │ ├── requirements.txt │ └── templates │ │ └── joke.html ├── readme.md └── rps │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ └── game.py ├── pyrefly.toml ├── readme_resources └── pragmatic-git.png └── ruff.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/pragmatic-git-course/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/pragmatic-git-course/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/pragmatic-git-course/HEAD/README.md -------------------------------------------------------------------------------- /projects/funny-web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/pragmatic-git-course/HEAD/projects/funny-web/.gitignore -------------------------------------------------------------------------------- /projects/funny-web/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/pragmatic-git-course/HEAD/projects/funny-web/.vscode/launch.json -------------------------------------------------------------------------------- /projects/funny-web/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.formatting.provider": "black" 3 | } -------------------------------------------------------------------------------- /projects/funny-web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/pragmatic-git-course/HEAD/projects/funny-web/LICENSE -------------------------------------------------------------------------------- /projects/funny-web/README.md: -------------------------------------------------------------------------------- 1 | # funny-web 2 | Sample app from course 3 | -------------------------------------------------------------------------------- /projects/funny-web/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/pragmatic-git-course/HEAD/projects/funny-web/app.py -------------------------------------------------------------------------------- /projects/funny-web/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/pragmatic-git-course/HEAD/projects/funny-web/data.py -------------------------------------------------------------------------------- /projects/funny-web/requirements.piptools: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /projects/funny-web/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/pragmatic-git-course/HEAD/projects/funny-web/requirements.txt -------------------------------------------------------------------------------- /projects/funny-web/templates/joke.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/pragmatic-git-course/HEAD/projects/funny-web/templates/joke.html -------------------------------------------------------------------------------- /projects/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/pragmatic-git-course/HEAD/projects/readme.md -------------------------------------------------------------------------------- /projects/rps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/pragmatic-git-course/HEAD/projects/rps/.gitignore -------------------------------------------------------------------------------- /projects/rps/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/pragmatic-git-course/HEAD/projects/rps/LICENSE -------------------------------------------------------------------------------- /projects/rps/README.md: -------------------------------------------------------------------------------- 1 | # sketchy-rock-paper-scissors 2 | A RPS app 3 | -------------------------------------------------------------------------------- /projects/rps/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/pragmatic-git-course/HEAD/projects/rps/game.py -------------------------------------------------------------------------------- /pyrefly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/pragmatic-git-course/HEAD/pyrefly.toml -------------------------------------------------------------------------------- /readme_resources/pragmatic-git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/pragmatic-git-course/HEAD/readme_resources/pragmatic-git.png -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talkpython/pragmatic-git-course/HEAD/ruff.toml --------------------------------------------------------------------------------