Skip to content

A mini web app that lets anyone create a printable poster or flyer with their own custom text.

License

Notifications You must be signed in to change notification settings

karabinosh/strikes-poster-generator

 
 

Repository files navigation

Global Climate Strike Poster & Flyer Maker

Contributors: Yuri Victor, Joshua Benton, Matt Montgomery, Ivar Vong, Steve Peters, Flip Stewart, Greg MacWilliam.

This web app generates posters and flyers for the Global Climate Strike. See a working version at 350poster.netlify.com.

Install

You'll need to have Ruby and Node installed.

  • git clone https://github.com/350org/strikes-poster-generator.git
  • bundle install
  • bundle exec middleman

This will start a local web server running at: http://localhost:4567/

To lint the JavaScript:

  • npm install (just once)
  • npm run lint

Customization

Configuration

Settings and controls are configured through source/javascripts/settings.js.erb. The settings file has ample comments to document configuration.

Fonts

Include your own fonts in stylesheets/_fonts.scss, then add your font options into the settings file.

Editor theme

Set the theme-color variable in source/stylesheets/_vars.scss. That one color will be tinted across all editor controls.

Cross-Origin Resources (CORS)

This is an HTML5 Canvas-based application, and thus comes with some security restrictions when loading graphics across domains (ex: a canvas element on http://tatooine.com cannot export with an image hosted on http://dagobah.com).

If you're hosting this application on the same domain that serves your images, then congratulations! You have no problems. However, if you're going through a CDN, then you'll probably encounter some cross-domain security issues; at which time you have two options:

  1. Follow this excellent MDN article about configuring "Access-Control-Allow-Origin" headers. You'll need to enable these headers on your CDN, at which time the Meme app should be able to request images from it.

  2. Embed all of your watermark images as base64 data URIs within the settings.js.erb file. The asset pipeline's asset_data_uri helper method makes this very easy, and effectively embeds all image data within your JavaScript. The downside here is that your JavaScript will become a very large payload as you include more images. In the long term, getting CORS headers configured will be a better option.

Contributing

  1. Fork it ( https://github.com/350org/strikes-poster-generator/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

About

A mini web app that lets anyone create a printable poster or flyer with their own custom text.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 63.0%
  • SCSS 23.9%
  • HTML 11.0%
  • Ruby 2.1%