Skip to content

Commit 0c38022

Browse files
authored
Add project setup instructions for Flask
1 parent a27a36c commit 0c38022

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Create a new directory for your project
2+
mkdir my-github-webhook
3+
cd my-github-webhook
4+
5+
# Create a virtual environment (recommended)
6+
python -m venv venv
7+
source venv/bin/activate # On Windows, use `venv\Scripts\activate`
8+
9+
# Install Flask
10+
pip install Flask

0 commit comments

Comments
 (0)