add vagrant setup

This commit is contained in:
Jakob Schrettenbrunner 2017-06-21 00:42:14 +02:00
parent 18b7b30057
commit f38d2996e9
4 changed files with 51 additions and 0 deletions

8
.dev/vagrant/motd.txt Normal file
View File

@ -0,0 +1,8 @@
#####################################################
Pterodactyl go Daemon Vagrant VM
Gopath: /home/ubuntu/go
Daemon: /home/ubuntu/go/src/github.com/schrej/wings.go
Data: /srv/daemon-data
#####################################################

31
.dev/vagrant/provision.sh Normal file
View File

@ -0,0 +1,31 @@
#!/bin/bash
echo "Provisioning development environment for Pterodactyl go daemon."
cp /home/ubuntu/go/github.com/schrej/wings.go/.dev/vagrant/motd.txt /etc/motd
chown -R ubuntu:ubuntu /home/ubuntu/go
echo "Update apt repositories"
sudo add-apt-repository ppa:longsleep/golang-backports
apt-get update > /dev/null
echo "Install docker"
curl -sSL https://get.docker.com/ | sh
systemctl enable docker
echo "Install go"
apt-get install -y golang-go
echo "export GOPATH=/home/ubuntu/go" >> /home/ubuntu/.profile
export GOPATH=/go
echo 'export PATH=$PATH:$GOPATH/bin' >> /home/ubuntu/.profile
echo "Install go dep"
sudo -H -u ubuntu bash -c 'go get -u github.com/golang/dep/cmd/dep'
echo "Install additional dependencies"
apt-get -y install mercurial #tar unzip make gcc g++ python > /dev/null
echo " ------------"
echo "Gopath is /home/ubuntu/go"
echo "The project is mounted to /go/src/github.com/schrej/wings.go"
echo "Provisioning is completed."

3
.gitignore vendored
View File

@ -22,5 +22,8 @@
# ignore configuration file
/config.json
# Ignore Vagrant stuff
/.vagrant
# Keep all gitkeep files (This needs to stay at the bottom)
!.gitkeep

9
Vagrantfile vendored Normal file
View File

@ -0,0 +1,9 @@
Vagrant.configure("2") do |cfg|
cfg.vm.box = "ubuntu/xenial64"
cfg.vm.synced_folder "./", "/home/ubuntu/go/src/github.com/schrej/wings.go"
cfg.vm.provision :shell, path: ".dev/vagrant/provision.sh"
cfg.vm.network :private_network, ip: "192.168.50.4"
end