Skip to content

Commit aa1d5cf

Browse files
committed
fixing issue with book generation and broken link on dev envs page
1 parent ece1fb2 commit aa1d5cf

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ run:
1212

1313

1414
bookbuild:
15-
cp -R content tempcontent
15+
mkdir tempcontent
16+
cp -R content/pages tempcontent/pages
1617
python transform_book.py pdf
1718
pelican -t theme -s book_settings.py -o generated/book tempcontent
1819
cp -R static-html/* generated/book/

content/pages/02-development-environments/00-development-environments.markdown

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ meta: Development environments allow programmers to read, write and work with co
88

99

1010
# Development Environments
11-
A development environment is a combination of a [text editor](text-editors-ides)
12-
and a Python runtime environment. The text editor allows you to write the code.
13-
The runtime environment implementation such as
14-
[CPython](https://github.com/python/cpython) or [PyPy](https://pypy.org/)
15-
provides the method for executing your code.
11+
A development environment is a combination of a
12+
[text editor](/text-editors-ides.html) and a Python runtime environment.
13+
The text editor allows you to write the code. The runtime environment
14+
implementation such as [CPython](https://github.com/python/cpython)
15+
or [PyPy](https://pypy.org/) provides the method for executing your code.
1616

1717
<img src="/img/visuals/tmux-vim-editor.png" width="100%" alt="tmux plus Vim editor on a dark background." class="shot rnd outl">
1818

content/pages/05-deployment/10-heroku.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,9 @@ easily [deploy](/deployment.html) Python applications.
3131

3232
* [Deploying Django to Heroku With Docker](https://testdriven.io/blog/deploying-django-to-heroku-with-docker/)
3333
looks at how to deploy a Django app to Heroku with Docker via the Heroku Container Runtime.
34+
35+
* [Heroku Chatbot with Celery, WebSockets, and Redis](https://itnext.io/heroku-chatbot-with-celery-websockets-and-redis-340fcd160f06)
36+
is a walkthrough with
37+
[available source code](https://github.com/inoks/django-chatbot) to build
38+
a [Django](/django.html) and [Redis](/redis.html)-based chat
39+
[bot](/bots.html) that can be easily deployed to Heroku.

theme/static/css/base.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ img.shot{width:100%;margin:6px 0 6px 0}
5959
}
6060
@page {
6161
@top {text-align:right;font-size:9pt;
62-
content:"Full Stack Python: April 2019 Edition"}
62+
content:"Full Stack Python: July 2019 Edition"}
6363
@bottom { text-align: right; font-size: 9pt; content: counter(page) }
6464
margin: 0.9in;
6565
size: A4;

0 commit comments

Comments
 (0)