En este párrafo debe describir la finalidad del módulo
Escriba aquí las instrucciones que permitirán a otro desarrollador o tester obtener este módulo y ponerlo en funcionamiento en un ambiente local.
| <IfModule mod_expires.c> | |
| ExpiresActive On | |
| ExpiresByType image/jpg "access 1 year" | |
| ExpiresByType image/jpeg "access 1 year" | |
| ExpiresByType image/gif "access 1 year" | |
| ExpiresByType image/png "access 1 year" | |
| ExpiresByType text/css "access 1 month" | |
| ExpiresByType text/html "access 1 month" | |
| ExpiresByType application/pdf "access 1 month" | |
| ExpiresByType text/x-javascript "access 1 month" |
| # change permissions for all files, skipping dirs | |
| find . -type f | xargs chmod 664 | |
| # change permissions for all dirs, skipping files | |
| find . -type d | xargs chmod 775 |
| # delete local tag '12345' | |
| git tag -d 12345 | |
| # delete remote tag '12345' (eg, GitHub version too) | |
| git push origin :refs/tags/12345 | |
| # alternative approach | |
| git push --delete origin tagName | |
| git tag -d tagName |
| # alias radio='function __radio(){ r=`grep -v "#" radios_nacionales.txt | grep -m 1 -i $1 | cut -d" " -f1`; cvlc $r 2> /dev/null; }; __radio' | |
| # podria utilizarse mplayer en vez de vlc | |
| AMs Nacionales | |
| http://200.68.81.65:8000/am530 Radio Madre 530 | |
| http://www.servidorstreaming1.com:9962/; Radio Colonia 550 | |
| http://195.154.182.222:25223/live.mp3 Radio Argentina 570 | |
| http://playerservices.streamtheworld.com/api/livestream-redirect/CONTINENTAL_SC Continental 590 | |
| http://209.95.35.49:7012/stream Rivadavia 630 |
| # alias radio='function __radio(){ r=`grep -v "#" radios_nacionales.txt | grep -m 1 -i $1 | cut -d" " -f1`; cvlc $r 2> /dev/null; }; __radio' | |
| # podria utilizarse mplayer en vez de vlc | |
| AMs Nacionales | |
| http://200.68.81.65:8000/am530 Radio Madre 530 | |
| http://www.servidorstreaming1.com:9962/; Radio Colonia 550 | |
| http://195.154.182.222:25223/live.mp3 Radio Argentina 570 | |
| http://playerservices.streamtheworld.com/api/livestream-redirect/CONTINENTAL_SC Continental 590 | |
| http://209.95.35.49:7012/stream Rivadavia 630 |
| FROM ruby:2.2.0 | |
| RUN bundle config --global frozen 1 | |
| RUN mkdir -p /usr/src/app | |
| WORKDIR /usr/src/app | |
| ADD Gemfile /usr/src/app/ | |
| ADD Gemfile.lock /usr/src/app/ | |
| RUN bundle install --without test development --system |
| -Go to the starting point of the project | |
| >> git checkout origin master | |
| -fetch all objects | |
| >> git fetch origin | |
| -Make the branch from the tag | |
| >> git branch new_branch tag_name | |
| -Checkout the branch | |
| >> git checkout new_branch | |
| -Push the branch up | |
| >> git push origin new_branch |