https://github.com/spk/flask-recipes
Import recipes into flask web app
https://github.com/spk/flask-recipes
flask-web python recipes
Last synced: 16 days ago
JSON representation
Import recipes into flask web app
- Host: GitHub
- URL: https://github.com/spk/flask-recipes
- Owner: spk
- License: mit
- Created: 2015-03-01T20:04:40.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2022-12-19T16:33:45.000Z (over 2 years ago)
- Last Synced: 2025-05-07T23:09:17.005Z (16 days ago)
- Topics: flask-web, python, recipes
- Language: Python
- Homepage:
- Size: 64.5 KB
- Stars: 7
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flask-recipes
Import recipes into flask web app.
## Setup
```
sudo apt install python-dev python-pip virtualenv
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
```Create database:
```
python db_manage.py up
```Run:
```
python run.py || foreman start
```Goto http://127.0.0.1:5000/
## Import
```
celery --A app.tasks worker
sh download-recipes.sh
python import_recipes.py
```## Tests
```
pytest
```## Resources
* http://microformats.org/wiki/recipe-formats
## License
The MIT License
Copyright (c) 2015-2020 Laurent Arnoud