File tree Expand file tree Collapse file tree 1 file changed +27
-2
lines changed Expand file tree Collapse file tree 1 file changed +27
-2
lines changed Original file line number Diff line number Diff line change 1
1
[ ![ Build Status] ( https://travis-ci.org/rafaelhenrique/flask_tutorial.svg?branch=master )] ( https://travis-ci.org/rafaelhenrique/flask_tutorial )
2
2
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.
5
30
6
31
## 1.0 - Flask and the most basic application of the world!
7
32
You can’t perform that action at this time.
0 commit comments