Assumptions
- your team all have Git installed
- your team is using Unity 5.0 or higher
- your team is following Git-flow branching model (if not, feel free to skip the steps for
develop
branch)
develop
branch)This is a walk-through installing PostgreSQL, PostGIS and GeoServer on Amazon Linux. This post is written in May, 2015. The version of Amazon Linux AMI is 2015.03.
America/Chicago
update 2018-01-31: The first line of the following snippet can be skipped as AMI now has built-in epel 6.8.9 installed as of today
sudo /bin/rpm -ivh http://ftp.uninett.no/linux/epel/6/i386/epel-release-6-8.noarch.rpm
sudo /bin/rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
sudo /bin/rpm -ivh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
sudo yum -y update
sudo ln -sf /usr/share/zoneinfo/America/Chicago /etc/localtime
sudo yum install -y gcc make nginx php-fpm php-devel php-mysql php-pdo php-pear php-mbstring php-cli php-odbc php-imap php-gd php-xml php-soap php-pecl-apc pcre-devel memcached php-pecl-memcached openssl-devel mysql-server mysql
sudo pecl install memcache
# auto start nginx php mysql memcached
sudo chkconfig nginx on
sudo chkconfig mysqld on
sudo chkconfig php-fpm on
sudo chkconfig memcached on
When I was writing , I decided to use \(\LaTeX\) to write some formulae.
After googling jekyll latex support
, I found this article. It took me to another blog post by a high school student from Boston, which provided a nice tutorial that adds LaTeX support on Jekyll blogs by using some tricks to let MathJax, an open source JavaSrcipt display engine for mathematics, work properly in Jekyll environment.