diff --git a/deployment/local-testing/.gitignore b/deployment/local-testing/.gitignore
new file mode 100644
index 0000000000..8000dd9db4
--- /dev/null
+++ b/deployment/local-testing/.gitignore
@@ -0,0 +1 @@
+.vagrant
diff --git a/deployment/local-testing/README.md b/deployment/local-testing/README.md
new file mode 100644
index 0000000000..6e68e2ea18
--- /dev/null
+++ b/deployment/local-testing/README.md
@@ -0,0 +1,20 @@
+# Local test deployment
+
+Currently, we're deploying to a vServer. The following will set up virtual machines locally in order to test out the deployment before it hits `staging` or `production`.
+
+1. Install [Vagrant](https://www.vagrantup.com/) on your machine
+
+1. `cd deployment/local-testing`
+
+1. `vagrant up` .. and wait
+
+1. Following services are running:
+ -
+ -
+ -
+ -
+ -
+
+1. Be amazed
+
+In the future we might want to use [Ansible](https://www.ansible.com/) for provisioning. We could run our playbooks against this virtual machine, too.
diff --git a/deployment/local-testing/Vagrantfile b/deployment/local-testing/Vagrantfile
new file mode 100644
index 0000000000..349567b55a
--- /dev/null
+++ b/deployment/local-testing/Vagrantfile
@@ -0,0 +1,13 @@
+# Defines our Vagrant environment
+#
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+
+Vagrant.configure("2") do |config|
+ config.vm.box = 'generic/alpine319'
+ config.vm.provision :shell, path: "bootstrap.sh"
+ config.vm.synced_folder '.', '/vagrant', disabled: true
+ config.vm.network "forwarded_port", guest: 80, host: 8000
+ config.vm.network "forwarded_port", guest: 8080, host: 8080
+ config.vm.network "forwarded_port", guest: 8082, host: 8082
+end
diff --git a/deployment/local-testing/bootstrap.sh b/deployment/local-testing/bootstrap.sh
new file mode 100644
index 0000000000..680640e91b
--- /dev/null
+++ b/deployment/local-testing/bootstrap.sh
@@ -0,0 +1,40 @@
+#!/bin/sh
+
+apk update
+apk upgrade
+apk add nginx openrc nodejs npm git mysql mysql-client
+
+
+npm install pm2 -g
+pm2 startup
+
+rc-update add pm2 boot
+rc-update add nginx boot
+service nginx start
+
+
+service mariadb setup
+rc-update add mariadb boot
+sed -e '/skip-networking/ s/^#*/#/' -i /etc/my.cnf.d/mariadb-server.cnf
+service mariadb start
+
+
+cd /var/www/localhost/htdocs/
+git clone https://github.com/dreammall-earth/dreammall.earth.git
+cd dreammall.earth
+
+mkdir -p /etc/nginx/http.d
+cp -f ./deployment/nginx/default.conf /etc/nginx/http.d/default.conf
+cp ./deployment/nginx/frontend.conf /etc/nginx/http.d/frontend.conf
+cp ./deployment/nginx/admin.conf /etc/nginx/http.d/admin.conf
+
+service nginx restart
+
+mysql -e "CREATE USER 'dreammall'@'localhost' IDENTIFIED BY 'SECRET'; GRANT ALL PRIVILEGES ON * . * TO 'dreammall'@'localhost'; FLUSH PRIVILEGES;"
+
+cp backend/.env.dist backend/.env
+cp presenter/.env.dist presenter/.env
+cp frontend/.env.dist frontend/.env
+cp admin/.env.dist admin/.env
+
+deployment/deploy.sh