setup:
gitignore
We're starting an open source project on behalf of this website! In this series of video's well set up the project locally, turn our python code into a python project and also make the first version of it pip-installable.
Notes
We want our git repository to remain clean and simple. To make sure
that we don't accidentally add files that we're not interested in we
should add some lines to our .gitignore
file.
# Ignore Notebooks
*.ipynb
# Ignore VS Code Settings
.vscode/
Jupyter notebooks in the root directory will now be ignored just like
any settings from .vscode
.
Feedback? See an issue? Something unclear? Feel free to mention it here.
If you want to be kept up to date, consider signing up for the newsletter.