Skip to content

Instantly share code, notes, and snippets.

@andy-igoo
andy-igoo / redis_install.sh
Last active November 27, 2019 14:28
Redis install (Debian/Ubuntu)
#!/bin/sh
cd /tmp
wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make distclean
cd deps
make hiredis jemalloc linenoise lua geohash-int
@andy-igoo
andy-igoo / m2-vagrant-setup-gist.md
Created April 30, 2018 09:16
Magento 2 Vagrant Setup

Magento 2 Example Dev Environment

Creating a Vagrant Box

Firstly, create a folder for your Magento 2 project and navigate to it. E.g. mkdir ~/Projects/magento2.lan

Requirements

Make sure you have Virtual Box installed (check which version is compatible here) and Vagrant.