Skip to content

Commit fd335ca

Browse files
committed
Updated README.
1 parent 6dc79e6 commit fd335ca

File tree

4 files changed

+34
-29
lines changed

4 files changed

+34
-29
lines changed

README.md

Lines changed: 5 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -13,36 +13,13 @@ Source code for the accompanying tutorial found here: https://hackersandslackers
1313

1414
## Installation
1515

16-
**Installation via `requirements.txt`**:
16+
Get up and running with `make deploy`:
1717

1818
```shell
19-
$ git clone https://github.com/hackersandslackers/flask-jinja-tutorial.git
20-
$ cd flask-jinja-tutorial
21-
$ python3 -m venv myenv
22-
$ source myenv/bin/activate
23-
$ pip3 install -r requirements.txt
24-
$ flask run
25-
```
26-
27-
**Installation via [Pipenv](https://pipenv-fork.readthedocs.io/en/latest/)**:
28-
29-
```shell
30-
$ git clone https://github.com/hackersandslackers/flask-jinja-tutorial.git
31-
$ cd flask-jinja-tutorial
32-
$ pipenv shell
33-
$ pipenv update
34-
$ flask run
35-
```
36-
37-
**Installation via [Poetry](https://python-poetry.org/)**:
38-
39-
```shell
40-
$ git clone https://github.com/hackersandslackers/flask-jinja-tutorial.git
41-
$ cd flask-jinja-tutorial
42-
$ poetry shell
43-
$ poetry update
44-
$ poetry run
45-
```
19+
$ git clone https://github.com/hackersandslackers/flask-assets-tutorial.git
20+
$ cd flask-assets-tutorial
21+
$ make deploy
22+
```
4623
-----
4724

4825
**Hackers and Slackers** tutorials are free of charge. If you found this tutorial helpful, a [small donation](https://www.buymeacoffee.com/hackersslackers) would be greatly appreciated to keep us in business. All proceeds go towards coffee, and all coffee goes towards more content.

poetry.lock

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

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,14 @@ flask = "*"
2020

2121
[tool.poetry.dev-dependencies]
2222
black = "^20.8b1"
23+
isort = "^5.6.4"
2324

2425
[tool.poetry.scripts]
2526
run = "wsgi:app"
2627

2728
[tool.poetry.urls]
2829
issues = "https://github.com/hackersandslackers/flask-jinja-tutorial/issues"
30+
2931
[build-system]
3032
requires = ["poetry>=0.12"]
3133
build-backend = "poetry.masonry.api"

requirements.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1+
appdirs==1.4.4
2+
black==20.8b1
13
click==7.1.2
24
Flask==1.1.2
5+
isort==5.6.4
36
itsdangerous==1.1.0
47
Jinja2==2.11.2
58
MarkupSafe==1.1.1
9+
mypy-extensions==0.4.3
10+
pathspec==0.8.0
11+
regex==2020.10.15
12+
toml==0.10.1
13+
typed-ast==1.4.1
14+
typing-extensions==3.7.4.3
615
Werkzeug==1.0.1

0 commit comments

Comments
 (0)