Skip to content

Commit

Permalink
Merge pull request #1872 from github/jm_add_venv_to_gitignore
Browse files Browse the repository at this point in the history
chore: add .venv/venv to .gitignore and update README with local dev info
  • Loading branch information
jmeridth authored Sep 4, 2024
2 parents 914839f + b4f9c54 commit 9fe4c64
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ pkg/
*~
vendor/
.DS_Store
.venv
venv
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,15 @@ require 'github/markup'
GitHub::Markup.render_s(GitHub::Markups::MARKUP_MARKDOWN, "* One\n* Two")
```

Local Development
-----------------

```sh
python3 -m venv .venv
source .venv/bin/activate
cd script
./bootstrap
```

Contributing
------------
Expand Down

0 comments on commit 9fe4c64

Please sign in to comment.