Skip to content

Commit 0b991af

Browse files
Improve explanation of README.md
1 parent bb5d3c8 commit 0b991af

File tree

1 file changed

+27
-2
lines changed

1 file changed

+27
-2
lines changed

README.md

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,32 @@
11
[![Build Status](https://travis-ci.org/rafaelhenrique/flask_tutorial.svg?branch=master)](https://travis-ci.org/rafaelhenrique/flask_tutorial)
22

3-
# flask_tutorial
4-
Flask tutorial to Python Study Group
3+
# Flask Tutorial
4+
5+
This is an educational project to teach Flask to people who already know Python and the basics of how the HTTP protocol works.
6+
7+
## Python intro
8+
9+
See this playlist: https://www.youtube.com/playlist?list=PL6f2gQ2RXLosWiXDHM7vOr1MPdfxPAm_t
10+
11+
## HTTP intro
12+
13+
See this video: https://www.youtube.com/watch?v=WWkJLTMbL9A
14+
15+
## How setup this project?
16+
17+
Create your virtualenv (using python3):
18+
19+
```
20+
$ python3 -m venv .venv
21+
```
22+
23+
Install requirements:
24+
25+
```
26+
$ pip install -r requirements.txt
27+
```
28+
29+
To run, follow explanatory videos below.
530

631
## 1.0 - Flask and the most basic application of the world!
732

0 commit comments

Comments
 (0)