Skip to content

Commit

Permalink
In the beginning
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamrhay committed Feb 22, 2015
1 parent eb75049 commit de18c9a
Show file tree
Hide file tree
Showing 11 changed files with 1,340 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.vagrant/
ebin/
_rel/
*.swp
deps/
.erlang.mk.packages.v2
test/*.beam
*.plt
relx
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
PROJECT = cowboy_stormpath
include erlang.mk
9 changes: 9 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :

VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "debian7"
config.vm.provision "shell", path: "provision.sh"
end
Loading

0 comments on commit de18c9a

Please sign in to comment.