GithubHelp home page GithubHelp logo

isabella232 / familymeal Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nprapps/familymeal

0.0 0.0 0.0 1.29 MB

An NPR project (built on Tumblr) centered around user-submitted photos of their dinners.

Home Page: http://dinnertimeconfessional.tumblr.com/

License: Other

Python 2.70% CSS 26.24% Ruby 0.31% JavaScript 70.74%

familymeal's Introduction

Copyright 2013 NPR. All rights reserved. No part of these materials may be reproduced, modified, stored in a retrieval system, or retransmitted, in any form or by any means, electronic, mechanical or otherwise, without prior written permission from NPR.

(Want to use this code? Send an email to [email protected]!)

Dinnertime Confessional

What's in here?

The project contains the following folders and important files:

  • data -- Data files, such as those used to generate HTML
  • etc -- Miscellaneous scripts and metadata for project bootstrapping.
  • jst -- Javascript (Underscore.js) templates
  • less -- LESS files, will be compiled to CSS and concatenated for deployment
  • templates -- HTML (Jinja2) templates, to be compiled locally
  • www -- Static and compiled assets to be deployed (a.k.a. "the output")
  • www/test -- Javascript tests and supporting files
  • app.py -- A Flask app for rendering the project locally.
  • upload_app.py -- A Flask app for writing uploaded data to Tumblr via the V2 API.
  • app_config.py -- Global project configuration for scripts, deployment, etc.
  • fabfile.py -- Fabric commands automating setup and deployment

Install requirements

Node.js is required for the static asset pipeline. If you don't already have it, get it like this:

brew install node
curl https://npmjs.org/install.sh | sh

Then install the project requirements:

cd familymeal
npm install less universal-jst
mkvirtualenv familymeal
pip install -r requirements.txt

Project secrets

Project secrets should never be stored in app_config.py or anywhere else in the repository. They will be leaked to the client if you do. Instead, always store passwords, keys, etc. in environment variables and document that they are needed here in the README.

This project, like other NPR apps, requires you to export your AWS access key ID and your AWS secret access key as environment variables so that it can write to your S3 bucket.

AWS_SECRET_ACCESS_KEY=1234
AWS_ACCESS_KEY_ID=ABCD

Additionally, this particular application uses the Tumblr V2 API. If you are starting from scratch, you need to register an application with Tumblr and then do fab generate_new_oauth_tokens to get the four required tokens.

Put your Tumblr consumer key in app_config.py as TUMBLR_KEY and then export the OAuth token, the OAuth token secret and the application secret as environment variables.

TUMBLR_OAUTH_TOKEN=1234
TUMBLR_OAUTH_TOKEN_SECRET=1234
TUMBLR_APP_SECRET=1234

Run the project locally

A flask app is used to run the project locally. It will automatically recompile templates and assets on demand.

workon familymeal
python app.py

In a second terminal, run the local version of the Tumblr upload app.

workon familymeal
python upload_app.py

Visit localhost:8000 in your browser to see the form. The form will POST data to localhost:8001, and then upload_app.py will push the photo and some text to Tumblr.

Run Javascript tests

With the project running, visit localhost:8000/test/SpecRunner.html.

Compile static assets

Compile LESS to CSS, compile javascript templates to Javascript and minify all assets:

workon familymeal
fab render

(This is done automatically whenever you deploy to S3.)

Test the rendered app

If you want to test the app once you've rendered it out, just use the Python webserver:

cd www
python -m SimpleHTTPServer

Deploy to S3

fab staging master deploy

Deploy to EC2

The current configuration is for running cron jobs only. Web server configuration is not included.

  • In fabfile.py set env.deploy_to_servers to True.
  • Run fab staging master setup to configure the server.
  • Run fab staging master deploy to deploy the app.

familymeal's People

Contributors

alykat avatar jeremyjbowers avatar kzhu91 avatar onyxfish avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.