/tutorial_pyramid_mongo

Studying MongoDB and Pyramid

Primary LanguagePython

Tutorial: CRUD with Pyramid, Pymongo and WTForms

About

This repository contains the code written along the tutorial series "Tutorial 1" about Pyramid that can be found at the link below:

The goal is to keep track of what I have been studying about Pyramid. At each branch you can find the code developed during a certain step of the process.

Getting Started

To run the final product do the following: Create a database according to the second part of the tutorial:

Clone this repository:

git clone https://github.com/albertosdneto/tutorial_pyramid_mongo.git

cd tutorial_pyramid_mongo/

Create a virtual environment and update it:

python3 -m venv env

env/bin/pip install --upgrade pip setuptools

Install the application:

env/bin/pip install -e .

Run the application:

env/bin/pserve development.ini --reload

I hope you enjoy.