Animated gif web player / visualizer - check out http://giffing.metal-heart.org for a demo!
This project demo currently uses gifs from these talented and awesome animated gif artists:
- http://beesandbombs.tumblr.com/
- http://hexeosis.tumblr.com/
- http://www.anokafaruqee.com
- http://those-visions-have-no-end.tumblr.com/
- http://flotsam.sellingwaves.com/
- clone this repo
- run
bower installandnpm install - run
bower --forceto build andnpm startto run
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