-
Notifications
You must be signed in to change notification settings - Fork 12
/
README
47 lines (30 loc) · 1.15 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
========
Overview
========
``pyramid_mongodb`` is a simple Paster template or scaffold for the Pyramid Web
Framework. It provides URL mapping via traversal and persistence via MongoDB.
It is based on the "starter" template included in Pyramid core, and Mike Orr's
"Akhet" template.
See http://docs.pylonsproject.org/projects/pyramid/1.0/narr/project.html#paster-templates-included-with-pyramid
==========
Installing
==========
Latest stable releases can be found at http://pypi.python.org/pypi/pyramid_mongodb
You can install from Pypi using ``easy_install`` or ``pip``::
easy_install pyramid_mongodb
or alternatively::
pip install pyramid_mongodb
===
Use
===
Once ``pyramid_mongodb`` is installed, you should see it in the list of
available templates when you run ::
pcreate -l
::
$ pcreate -l
Available scaffolds:
alchemy: Pyramid SQLAlchemy project using url dispatch
pyramid_mongodb: pyramid MongoDB project
starter: Pyramid starter project
zodb: Pyramid ZODB project using traversal
You can create a project with MongoDB support by running ``pcreate -s pyramid_mongodb <name of project>``.