Skip to content

apachols/giffing

Repository files navigation

Animated gif web player / visualizer - check out http://giffing.metal-heart.org for a demo!

Special Thanks

This project demo currently uses gifs from these talented and awesome animated gif artists:

How to Run Locally

  • clone this repo
  • run bower install and npm install
  • run bower --force to build and npm start to run

How to Run on a Server

Add this or something like it to your nginx config:

server {
    listen 80;
    server_name adampacholski.com giffing.metal-heart.org;
    location / {
        root [the public directory];
        index index.html;
    }
    location /api {
        proxy_set_header   X-Real-IP $remote_addr;
        proxy_set_header   Host      $http_host;
        proxy_pass         http://127.0.0.1:9000;
    }
    location /content {
        root [parent directory of /content];
        expires 1y;
    }
}

Run the program with something like: forever start dist/server/app.js

About

Animated gif player thing

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors