Adds a warning message for C extensions
This commit is contained in:
@@ -32,7 +32,7 @@ you might want to check that engine's dependencies as well.
|
||||
|
||||
* Genshi >= 0.6
|
||||
* Kajiki >= 0.3.1
|
||||
* Mako >= 0.3
|
||||
* Mako >= 0.3
|
||||
|
||||
From this point forward, we will assume you are going to be using Mako (it is the recommended Pecan template
|
||||
engine), to avoid describing third party dependencies.
|
||||
@@ -106,6 +106,11 @@ Go ahead and create a ``lib`` directory inside of your ``pecan_gae`` directory
|
||||
application and add the requirements for Pecan there. Make sure you have
|
||||
a ``__init__.py`` file too.
|
||||
|
||||
.. warning::
|
||||
You should **not** run ``setup.py`` on any of the libraries. This prevents
|
||||
activating C extensions which are forbidden in App Engine. Copy the
|
||||
*actual* source for the libraries only.
|
||||
|
||||
The ``lib`` directory should contain the source for all the dependencies we need. For our example, it should
|
||||
contain these libraries:
|
||||
|
||||
|
||||
@@ -120,7 +120,7 @@ html_theme = 'nature'
|
||||
# Add any paths that contain custom static files (such as style sheets) here,
|
||||
# relative to this directory. They are copied after the builtin static files,
|
||||
# so a file named "default.css" will overwrite the builtin "default.css".
|
||||
html_static_path = ['_static']
|
||||
html_static_path = ['static']
|
||||
|
||||
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
||||
# using the given strftime format.
|
||||
|
||||
Reference in New Issue
Block a user