Last active
December 18, 2015 11:29
-
-
Save snooc/5775881 to your computer and use it in GitHub Desktop.
Revisions
-
snooc revised this gist
Jun 13, 2013 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ apt-get install postgresql postgresql-client postgresql-server-dev-all libpq-dev -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -61,6 +61,6 @@ rbenv rehash # Update RBENV and RUBY-BUILD permissions printf "\n [ \033[00;34m..\033[0m ] Updating RBENV and RUBY-BUILD permissions\n\n" chgrp -R staff /usr/local/rbenv chgrp -R staff /usr/local/share/ruby-build chmod g+rwxXs /usr/local/rbenv chmod g+rwxXs /usr/local/share/ruby-build -
snooc revised this gist
Jun 13, 2013 . 2 changed files with 57 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,42 @@ user www-data; worker_processes 4; pid /var/run/nginx.pid; worker_rlimit_nofile 8192; events { worker_connections 1024; } http { passenger_root /usr/local/rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/passenger-4.0.5; passenger_ruby /usr/local/rbenv/versions/2.0.0-p195/bin/ruby; include mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log logs/access.log main; sendfile on; tcp_nopush on; keepalive_timeout 65; gzip on; gzip_http_version 1.0; gzip_comp_level 5; gzip_min_length 512; gzip_buffers 4 8k; gzip_proxied any; gzip_types text/css text/plain text/x-component application/javascript application/json application/xml application/xhtml+xml application/x-font-ttf application/x-font-opentype application/vnd.ms-fontobject image/svg+xml image/x-icon; gzip_disable "MSIE [1-6]\."; gzip_vary on; include /opt/nginx/conf/sites-enabled/*; } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -23,4 +23,18 @@ mv init-deb.sh /etc/init.d/nginx chmod +x /etc/init.d/nginx /usr/sbin/update-rc.d -f nginx defaults service nginx restart # Create Deploy user printf "\n [ \033[00;34m..\033[0m ] Creating deploy user\n\n" useradd -s /bin/bash -m deployer passwd deployer usermod -a -G sudo deployer usermod -a -G staff deployer usermod -a -G www-data deployer # Create /var/www printf "\n [ \033[00;34m..\033[0m ] Creating /var/www\n\n" mkdir /var/www chown deployer:www-data /var/www -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -18,7 +18,7 @@ apt-get -y upgrade printf "\n [ \033[00;34m..\033[0m ] Installing Needed Packages\n\n" apt-get -y install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev \ libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev \ autoconf libc6-dev ncurses-dev automake libtool bison vim nodejs # Install rbenv printf "\n [ \033[00;34m..\033[0m ] Installing RBENV\n\n" -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 8 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -56,4 +56,11 @@ printf "\n [ \033[00;34m..\033[0m ] Updating system gems and installing bundler gem update --system gem install bundler rbenv rehash # Update RBENV and RUBY-BUILD permissions printf "\n [ \033[00;34m..\033[0m ] Updating RBENV and RUBY-BUILD permissions\n\n" chgrp -R staff /usr/local/rbenv chgrp -R staff /usr/local/shared/ruby-build chmod g+rwxXs /usr/local/rbemv chmod g+rwxXs /usr/local/shared/ruby-build -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -12,13 +12,13 @@ gem install passenger rbenv rehash # Install Nginx printf "\n [ \033[00;34m..\033[0m ] Running NGINX installer\n\n" apt-get -y install libcurl4-openssl-dev passenger-install-nginx-module # Install nginx init.d script printf "\n [ \033[00;34m..\033[0m ] Installing NGINX init.d script\n\n" wget -O init-deb.sh https://library.linode.com/assets/1139-init-deb.sh mv init-deb.sh /etc/init.d/nginx chmod +x /etc/init.d/nginx /usr/sbin/update-rc.d -f nginx defaults -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 10 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -14,4 +14,13 @@ rbenv rehash # Install Nginx printf "\n [ \033[00;34m..\033[0m ] Running NGINX installer -- MAKE SURE TO SET DIR TO /etc/nginx\n\n" apt-get -y install libcurl4-openssl-dev passenger-install-nginx-module # Install nginx init.d script printf "\n [ \033[00;34m..\033[0m ] Installing NGINX init.d script\n\n" wget -O init-deb.sh http://library.linode.com/assets/1139-init-deb.sh mv init-deb.sh /etc/init.d/nginx chmod +x /etc/init.d/nginx /usr/sbin/update-rc.d -f nginx defaults service nginx restart -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -12,6 +12,6 @@ gem install passenger rbenv rehash # Install Nginx printf "\n [ \033[00;34m..\033[0m ] Running NGINX installer -- MAKE SURE TO SET DIR TO /etc/nginx\n\n" apt-get -y install libcurl4-openssl-dev passenger-install-nginx-module -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -13,4 +13,5 @@ rbenv rehash # Install Nginx printf "\n [ \033[00;34m..\033[0m ] Running NGINX installeer\n\n" apt-get -y install libcurl4-openssl-dev passenger-install-nginx-module -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,6 +9,8 @@ printf "\n [ \033[00;34m..\033[0m ] Installing Passenger Gem\n\n" gem install passenger rbenv rehash # Install Nginx printf "\n [ \033[00;34m..\033[0m ] Running NGINX installeer\n\n" passenger-install-nginx-module -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -54,4 +54,6 @@ echo "gem: --no-ri --no-rdoc" >> $HOME/.gemrc # Update system gems and install bundler printf "\n [ \033[00;34m..\033[0m ] Updating system gems and installing bundler\n\n" gem update --system gem install bundler rbenv rehash -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 14 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ # # This script assumes that ruby was installed using rbenv # # Run as root # $ bash <(curl -s [GIST URL]) # # Install passenger gem printf "\n [ \033[00;34m..\033[0m ] Installing Passenger Gem\n\n" gem install passenger # Install Nginx printf "\n [ \033[00;34m..\033[0m ] Running NGINX installeer\n\n" passenger-install-nginx-module -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -51,7 +51,7 @@ rbenv rehash rm -f $HOME/.gemrc echo "gem: --no-ri --no-rdoc" >> $HOME/.gemrc # Update system gems and install bundler printf "\n [ \033[00;34m..\033[0m ] Updating system gems and installing bundler\n\n" gem update --system gem install bundler -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 0 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -51,8 +51,6 @@ rbenv rehash rm -f $HOME/.gemrc echo "gem: --no-ri --no-rdoc" >> $HOME/.gemrc printf "\n [ \033[00;34m..\033[0m ] Updating system gems and installing bundler\n\n" gem update --system -
snooc renamed this gist
Jun 13, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 7 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,17 +11,17 @@ GLOBAL_RUBY_VERSION=${GLOBAL_RUBY_VERSION:-2.0.0-p195} # Install needed packages printf "\n [ \033[00;34m..\033[0m ] Updating System\n\n" apt-get -y update printf "\n [ \033[00;34m..\033[0m ] Upgrading System\n\n" apt-get -y upgrade printf "\n [ \033[00;34m..\033[0m ] Installing Needed Packages\n\n" apt-get -y install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev \ libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev \ autoconf libc6-dev ncurses-dev automake libtool bison vim # Install rbenv printf "\n [ \033[00;34m..\033[0m ] Installing RBENV\n\n" rm -rf /usr/local/rbenv git clone git://github.com/sstephenson/rbenv.git /usr/local/rbenv @@ -35,15 +35,15 @@ chmod +x /etc/profile.d/rbenv.sh source /etc/profile.d/rbenv.sh # Install ruby-build printf "\n [ \033[00;34m..\033[0m ] Installing RUBY-BUILD\n\n" rm -rf /tmp/ruby-build pushd /tmp git clone git://github.com/sstephenson/ruby-build.git cd ruby-build ./install.sh popd printf "\n [ \033[00;34m..\033[0m ] Installing Ruby $GLOBAL_RUBY_VERSION\n\n" rbenv install $GLOBAL_RUBY_VERSION rbenv global $GLOBAL_RUBY_VERSION rbenv rehash @@ -53,7 +53,7 @@ echo "gem: --no-ri --no-rdoc" >> $HOME/.gemrc exec $SHELL printf "\n [ \033[00;34m..\033[0m ] Updating system gems and installing bundler\n\n" gem update --system gem install bundler -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,7 @@ # # WARNING: This script runs 'rm -rf' on most directories before installing. It will kill things. # ...Also, it takes awhile to compile ruby on resource starved machines. # (O_o *Looks at 512MB droplet*) # # Run as root # $ bash <(curl -s [GIST URL]) -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,6 @@ # # WARNING: This script runs 'rm -rf' on most directories before installing. It will kill things. # ...Also, it takes awhile to compile ruby on resource starved machines. (O_o *Looks at 512MB droplet*) # # Run as root # $ bash <(curl -s [GIST URL]) -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,7 @@ # # CONFIGURATION VAIRABLES GLOBAL_RUBY_VERSION=${GLOBAL_RUBY_VERSION:-2.0.0-p195} # Install needed packages printf "\n [ \033[00;34m..\033[0m ] Updating System\n" -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,6 @@ # # WARNING: THIS SCRIPT RUNS 'rm -rf' on most directories before installing. It will kill things. # # Run as root # $ bash <(curl -s [GIST URL]) # -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -38,7 +38,8 @@ pushd /tmp cd ruby-build ./install.sh popd printf "\n [ \033[00;34m..\033[0m ] Installing Ruby $GLOBAL_RUBY_VERSION\n" rbenv install $GLOBAL_RUBY_VERSION rbenv global $GLOBAL_RUBY_VERSION rbenv rehash -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,7 @@ # # CONFIGURATION VAIRABLES GLOBAL_RUBY_VERSION=${GLOBAL_RUBY_VERSION:-2.0.0p125} # Install needed packages printf "\n [ \033[00;34m..\033[0m ] Updating System\n" -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -32,6 +32,7 @@ source /etc/profile.d/rbenv.sh # Install ruby-build printf "\n [ \033[00;34m..\033[0m ] Installing RUBY-BUILD\n" rm -rf /tmp/ruby-build pushd /tmp git clone git://github.com/sstephenson/ruby-build.git cd ruby-build -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -14,7 +14,7 @@ apt-get -y upgrade printf "\n [ \033[00;34m..\033[0m ] Installing Needed Packages\n" apt-get -y install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev \ libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev \ autoconf libc6-dev ncurses-dev automake libtool bison vim # Install rbenv printf "\n [ \033[00;34m..\033[0m ] Installing RBENV\n" -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 11 additions and 8 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,25 +1,27 @@ # # Run as root # $ bash <(curl -s [GIST URL]) # # CONFIGURATION VAIRABLES GLOBAL_RUBY_VERSION=${RUBY_VER:-2.0.0p125} # Install needed packages printf "\n [ \033[00;34m..\033[0m ] Updating System\n" apt-get -y update printf "\n [ \033[00;34m..\033[0m ] Upgrading System\n" apt-get -y upgrade printf "\n [ \033[00;34m..\033[0m ] Installing Needed Packages\n" apt-get -y install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev \ libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev \ autoconf libc6-dev ncurses-dev automake libtool bison # Install rbenv printf "\n [ \033[00;34m..\033[0m ] Installing RBENV\n" rm -rf /usr/local/rbenv git clone git://github.com/sstephenson/rbenv.git /usr/local/rbenv rm -f /usr/profile.d/rbenv.sh echo '# rbenv setup' > /etc/profile.d/rbenv.sh echo 'export RBENV_ROOT=/usr/local/rbenv' >> /etc/profile.d/rbenv.sh echo 'export PATH="$RBENV_ROOT/bin:$PATH"' >> /etc/profile.d/rbenv.sh @@ -29,7 +31,7 @@ chmod +x /etc/profile.d/rbenv.sh source /etc/profile.d/rbenv.sh # Install ruby-build printf "\n [ \033[00;34m..\033[0m ] Installing RUBY-BUILD\n" pushd /tmp git clone git://github.com/sstephenson/ruby-build.git cd ruby-build @@ -40,11 +42,12 @@ rbenv install $GLOBAL_RUBY_VERSION rbenv global $GLOBAL_RUBY_VERSION rbenv rehash rm -f $HOME/.gemrc echo "gem: --no-ri --no-rdoc" >> $HOME/.gemrc exec $SHELL printf "\n [ \033[00;34m..\033[0m ] Updating system gems and installing bundler\n" gem update --system gem install bundler -
snooc revised this gist
Jun 13, 2013 . 1 changed file with 50 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1 +1,50 @@ # # Run as root # $ bash <(curl -s https://gist.github.com/snooc/3c149155455153435461/raw/f1cfe3477b5a0fa005f59baaa386349115fc720c/init.sh) # # CONFIGURATION VAIRABLES GLOBAL_RUBY_VERSION=${RUBY_VER:-2.0.0p125} # Install needed packages printf " [ \033[00;34m..\033[0m ] Updating System" apt-get -y update printf " [ \033[00;34m..\033[0m ] Upgrading System" apt-get -y upgrade printf " [ \033[00;34m..\033[0m ] Installing Needed Packages" apt-get -y install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev \ libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev \ autoconf libc6-dev ncurses-dev automake libtool bison # Install rbenv printf " [ \033[00;34m..\033[0m ] Installing RBENV" git clone git://github.com/sstephenson/rbenv.git /usr/local/rbenv echo '# rbenv setup' > /etc/profile.d/rbenv.sh echo 'export RBENV_ROOT=/usr/local/rbenv' >> /etc/profile.d/rbenv.sh echo 'export PATH="$RBENV_ROOT/bin:$PATH"' >> /etc/profile.d/rbenv.sh echo 'eval "$(rbenv init -)"' >> /etc/profile.d/rbenv.sh chmod +x /etc/profile.d/rbenv.sh source /etc/profile.d/rbenv.sh # Install ruby-build printf " [ \033[00;34m..\033[0m ] Installing RUBY-BUILD" pushd /tmp git clone git://github.com/sstephenson/ruby-build.git cd ruby-build ./install.sh popd rbenv install $GLOBAL_RUBY_VERSION rbenv global $GLOBAL_RUBY_VERSION rbenv rehash echo "gem: --no-ri --no-rdoc" >> $HOME/.gemrc exec $SHELL printf " [ \033[00;34m..\033[0m ] Updating system gems and installing bundler" gem update --system gem install bundler -
snooc created this gist
Jun 13, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ ffff