Learning course on web development with Flask.
Each lesson is located in a separate GitHub branch.
Follow these steps to get started with the course:
-
Clone the repository:
git clone https://github.com/svkivn/flask-course-2025 cd flask-course-2025 -
View available branches:
git branch -r
-
Switch to the lesson branch you want:
git checkout lesson1-hello-world
-
Create and activate a virtual environment:
python -m venv venv source venv/bin/activate # Linux/Mac venv\Scripts\activate # Windows
-
Install dependencies:
pip install -r requirements.txt