Skip to content

Commit cf2a8cf

Browse files
committed
Updated Readme.
1 parent da8387f commit cf2a8cf

File tree

17 files changed

+37
-33
lines changed

17 files changed

+37
-33
lines changed

β€ŽPipfile.lockβ€Ž

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€ŽREADME.mdβ€Ž

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Flask-WTF Tutorial
22

3-
![Python](https://img.shields.io/badge/Python-v3.7-blue.svg?logo=python&longCache=true&logoColor=white&colorB=5e81ac&style=flat-square&colorA=4c566a)
3+
![Python](https://img.shields.io/badge/Python-v3.8-blue.svg?logo=python&longCache=true&logoColor=white&colorB=5e81ac&style=flat-square&colorA=4c566a)
44
![Flask](https://img.shields.io/badge/Flask-v1.1.1-blue.svg?longCache=true&logo=flask&style=flat-square&logoColor=white&colorB=5e81ac&colorA=4c566a)
55
![Flask-WTF](https://img.shields.io/badge/Flask--WTF-v0.14.2-blue.svg?longCache=true&logo=flask&style=flat-square&logoColor=white&colorB=5e81ac&colorA=4c566a)
66
![GitHub Last Commit](https://img.shields.io/github/last-commit/google/skia.svg?style=flat-square&colorA=4c566a&colorB=a3be8c&logo=GitHub)
@@ -12,24 +12,27 @@
1212

1313
Source code for the accompanying tutorial found here: https://hackersandslackers.com/guide-to-building-forms-in-flask/
1414

15-
## Getting Started
1615

17-
Installation is recommended with Pipenv:
16+
## Installation
17+
18+
**Installation via `requirements.txt`**:
1819

1920
```shell
20-
$ git clone https://github.com/hackersandslackers/flask-wtform-tutorial.git
21+
$ git clone https://github.com/hackersandslackers/fflask-wtform-tutorial.git
2122
$ cd flask-wtform-tutorial
22-
$ pipenv shell
23-
$ pipenv update
23+
$ python3 -m venv myenv
24+
$ source myenv/bin/activate
25+
$ pip3 install -r requirements.txt
2426
$ flask run
2527
```
2628

27-
Alternatively, try installing via `setup.py`:
29+
**Installation via [Pipenv](https://pipenv-fork.readthedocs.io/en/latest/)**:
2830

2931
```shell
3032
$ git clone https://github.com/hackersandslackers/flask-wtform-tutorial.git
3133
$ cd flask-wtform-tutorial
32-
$ python3 setup.py install
34+
$ pipenv shell
35+
$ pipenv update
3336
$ flask run
3437
```
3538
-----
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
Β (0)