Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adamreeve/recipebook
Python web application for sharing recipes (the food kind)
https://github.com/adamreeve/recipebook
Last synced: 15 days ago
JSON representation
Python web application for sharing recipes (the food kind)
- Host: GitHub
- URL: https://github.com/adamreeve/recipebook
- Owner: adamreeve
- Created: 2014-05-24T00:27:55.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-05-28T09:59:21.000Z (over 10 years ago)
- Last Synced: 2024-10-31T22:09:50.196Z (2 months ago)
- Language: Python
- Size: 273 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
RecipeBook
==========A web application for sharing recipes built with
Flask and MongoDB.It is currently usable but still a work in progress.
Getting Started with Development
--------------------------------To set up a Python virtualenv for development::
virtualenv --no-site-packages env
source env/bin/activate
pip install -r requirements.txtTo install MongoDB on Fedora::
sudo yum install mongodb mongodb-server
sudo systemctl enable mongod.service
sudo systemctl start mongod.serviceThen initialise a database with some test data::
fab populate
To run tests::
fab test
To run a development server for testing::
./runserver