-
Notifications
You must be signed in to change notification settings - Fork 334
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a Vagrantfile for easier collaboration (#193)
- Loading branch information
1 parent
b96a08d
commit b8602e3
Showing
4 changed files
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,3 +66,6 @@ target/ | |
|
||
# pyenv python configuration file | ||
.python-version | ||
|
||
# Vagrant folder | ||
.vagrant |
This file contains 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 characters
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# -*- mode: ruby -*- | ||
# vi: set ft=ruby : | ||
|
||
Vagrant.configure("2") do |config| | ||
|
||
config.vm.box = "ubuntu/xenial64" | ||
|
||
config.vm.box_check_update = false | ||
|
||
config.vm.provision :shell, :privileged => false, :path => "provisioner.sh" | ||
end |
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#!/usr/bin/env bash | ||
|
||
export DEBIAN_FRONTEND=noninteractive | ||
|
||
# Update sources | ||
sudo apt-get update -y | ||
|
||
# Git | ||
sudo apt-get install git | ||
|
||
# Python | ||
sudo apt-get install -y python-pip python-dev build-essential | ||
|
||
# PyYaml | ||
sudo apt-get update | ||
sudo apt-get install python-yaml | ||
|
||
# Future | ||
|
||
sudo apt-get update | ||
pip install future | ||
|
||
# Scipy & Numpy | ||
sudo apt-get update | ||
sudo apt-get install python-numpy python-scipy | ||
|
||
# matplotlib | ||
sudo apt-get update | ||
sudo apt-get install python-matplotlib | ||
|
||
# Mock | ||
sudo apt-get update | ||
pip install mock | ||
|
||
# pytest | ||
sudo apt-get update | ||
pip install -U pytest | ||
|
||
# attrs | ||
sudo apt-get update | ||
pip install attrs | ||
|
||
# AWS Cli | ||
sudo apt-get update | ||
pip install awscli | ||
|
||
# Vim | ||
sudo apt-get install vim -y |