Skip to content

Commit 9fe4c64

Browse files
authored
Merge pull request #1872 from github/jm_add_venv_to_gitignore
chore: add .venv/venv to .gitignore and update README with local dev info
2 parents 914839f + b4f9c54 commit 9fe4c64

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ pkg/
66
*~
77
vendor/
88
.DS_Store
9+
.venv
10+
venv

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,15 @@ require 'github/markup'
7272
GitHub::Markup.render_s(GitHub::Markups::MARKUP_MARKDOWN, "* One\n* Two")
7373
```
7474

75+
Local Development
76+
-----------------
77+
78+
```sh
79+
python3 -m venv .venv
80+
source .venv/bin/activate
81+
cd script
82+
./bootstrap
83+
```
7584

7685
Contributing
7786
------------

0 commit comments

Comments
 (0)