Skip to content

Commit 3528fb6

Browse files
committed
initial files
0 parents  commit 3528fb6

File tree

7 files changed

+413
-0
lines changed

7 files changed

+413
-0
lines changed

Diff for: .gitattributes

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union
11+
12+
# Standard to msysgit
13+
*.doc diff=astextplain
14+
*.DOC diff=astextplain
15+
*.docx diff=astextplain
16+
*.DOCX diff=astextplain
17+
*.dot diff=astextplain
18+
*.DOT diff=astextplain
19+
*.pdf diff=astextplain
20+
*.PDF diff=astextplain
21+
*.rtf diff=astextplain
22+
*.RTF diff=astextplain

Diff for: .gitignore

+215
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,215 @@
1+
#################
2+
## Eclipse
3+
#################
4+
5+
*.pydevproject
6+
.project
7+
.metadata
8+
bin/
9+
tmp/
10+
*.tmp
11+
*.bak
12+
*.swp
13+
*~.nib
14+
local.properties
15+
.classpath
16+
.settings/
17+
.loadpath
18+
19+
# External tool builders
20+
.externalToolBuilders/
21+
22+
# Locally stored "Eclipse launch configurations"
23+
*.launch
24+
25+
# CDT-specific
26+
.cproject
27+
28+
# PDT-specific
29+
.buildpath
30+
31+
32+
#################
33+
## Visual Studio
34+
#################
35+
36+
## Ignore Visual Studio temporary files, build results, and
37+
## files generated by popular Visual Studio add-ons.
38+
39+
# User-specific files
40+
*.suo
41+
*.user
42+
*.sln.docstates
43+
44+
# Build results
45+
46+
[Dd]ebug/
47+
[Rr]elease/
48+
x64/
49+
build/
50+
[Bb]in/
51+
[Oo]bj/
52+
53+
# MSTest test Results
54+
[Tt]est[Rr]esult*/
55+
[Bb]uild[Ll]og.*
56+
57+
*_i.c
58+
*_p.c
59+
*.ilk
60+
*.meta
61+
*.obj
62+
*.pch
63+
*.pdb
64+
*.pgc
65+
*.pgd
66+
*.rsp
67+
*.sbr
68+
*.tlb
69+
*.tli
70+
*.tlh
71+
*.tmp
72+
*.tmp_proj
73+
*.log
74+
*.vspscc
75+
*.vssscc
76+
.builds
77+
*.pidb
78+
*.log
79+
*.scc
80+
81+
# Visual C++ cache files
82+
ipch/
83+
*.aps
84+
*.ncb
85+
*.opensdf
86+
*.sdf
87+
*.cachefile
88+
89+
# Visual Studio profiler
90+
*.psess
91+
*.vsp
92+
*.vspx
93+
94+
# Guidance Automation Toolkit
95+
*.gpState
96+
97+
# ReSharper is a .NET coding add-in
98+
_ReSharper*/
99+
*.[Rr]e[Ss]harper
100+
101+
# TeamCity is a build add-in
102+
_TeamCity*
103+
104+
# DotCover is a Code Coverage Tool
105+
*.dotCover
106+
107+
# NCrunch
108+
*.ncrunch*
109+
.*crunch*.local.xml
110+
111+
# Installshield output folder
112+
[Ee]xpress/
113+
114+
# DocProject is a documentation generator add-in
115+
DocProject/buildhelp/
116+
DocProject/Help/*.HxT
117+
DocProject/Help/*.HxC
118+
DocProject/Help/*.hhc
119+
DocProject/Help/*.hhk
120+
DocProject/Help/*.hhp
121+
DocProject/Help/Html2
122+
DocProject/Help/html
123+
124+
# Click-Once directory
125+
publish/
126+
127+
# Publish Web Output
128+
*.Publish.xml
129+
*.pubxml
130+
131+
# NuGet Packages Directory
132+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
133+
#packages/
134+
135+
# Windows Azure Build Output
136+
csx
137+
*.build.csdef
138+
139+
# Windows Store app package directory
140+
AppPackages/
141+
142+
# Others
143+
sql/
144+
*.Cache
145+
ClientBin/
146+
[Ss]tyle[Cc]op.*
147+
~$*
148+
*~
149+
*.dbmdl
150+
*.[Pp]ublish.xml
151+
*.pfx
152+
*.publishsettings
153+
154+
# RIA/Silverlight projects
155+
Generated_Code/
156+
157+
# Backup & report files from converting an old project file to a newer
158+
# Visual Studio version. Backup files are not needed, because we have git ;-)
159+
_UpgradeReport_Files/
160+
Backup*/
161+
UpgradeLog*.XML
162+
UpgradeLog*.htm
163+
164+
# SQL Server files
165+
App_Data/*.mdf
166+
App_Data/*.ldf
167+
168+
#############
169+
## Windows detritus
170+
#############
171+
172+
# Windows image file caches
173+
Thumbs.db
174+
ehthumbs.db
175+
176+
# Folder config file
177+
Desktop.ini
178+
179+
# Recycle Bin used on file shares
180+
$RECYCLE.BIN/
181+
182+
# Mac crap
183+
.DS_Store
184+
185+
186+
#############
187+
## Python
188+
#############
189+
190+
*.py[co]
191+
192+
# Packages
193+
*.egg
194+
*.egg-info
195+
dist/
196+
build/
197+
eggs/
198+
parts/
199+
var/
200+
sdist/
201+
develop-eggs/
202+
.installed.cfg
203+
204+
# Installer logs
205+
pip-log.txt
206+
207+
# Unit test / coverage reports
208+
.coverage
209+
.tox
210+
211+
#Translations
212+
*.mo
213+
214+
#Mr Developer
215+
.mr.developer.cfg

Diff for: README.md

Whitespace-only changes.

Diff for: Vagrantfile

+113
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
# -*- mode: ruby -*-
2+
# vi: set ft=ruby :
3+
4+
Vagrant.configure("2") do |config|
5+
# All Vagrant configuration is done here. The most common configuration
6+
# options are documented and commented below. For a complete reference,
7+
# please see the online documentation at vagrantup.com.
8+
9+
# Every Vagrant virtual environment requires a box to build off of.
10+
config.vm.box = "precise64"
11+
config.vm.provision :shell, :path => "bootstrap.sh"
12+
13+
# The url from where the 'config.vm.box' box will be fetched if it
14+
# doesn't already exist on the user's system.
15+
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
16+
17+
# Create a forwarded port mapping which allows access to a specific port
18+
# within the machine from a port on the host machine. In the example below,
19+
# accessing "localhost:8080" will access port 80 on the guest machine.
20+
#config.vm.network :forwarded_port, guest: 80, host: 8080
21+
22+
# Create a private network, which allows host-only access to the machine
23+
# using a specific IP.
24+
config.vm.network :private_network, ip: "192.168.33.10"
25+
26+
# Create a public network, which generally matched to bridged network.
27+
# Bridged networks make the machine appear as another physical device on
28+
# your network.
29+
# config.vm.network :public_network
30+
31+
# Share an additional folder to the guest VM. The first argument is
32+
# the path on the host to the actual folder. The second argument is
33+
# the path on the guest to mount the folder. And the optional third
34+
# argument is a set of non-required options.
35+
#config.vm.synced_folder "../data", "/vagrant_data"
36+
37+
# Provider-specific configuration so you can fine-tune various
38+
# backing providers for Vagrant. These expose provider-specific options.
39+
# Example for VirtualBox:
40+
#
41+
# config.vm.provider :virtualbox do |vb|
42+
# # Don't boot with headless mode
43+
# vb.gui = true
44+
#
45+
# # Use VBoxManage to customize the VM. For example to change memory:
46+
# vb.customize ["modifyvm", :id, "--memory", "1024"]
47+
# end
48+
#
49+
# View the documentation for the provider you're using for more
50+
# information on available options.
51+
52+
# Enable provisioning with Puppet stand alone. Puppet manifests
53+
# are contained in a directory path relative to this Vagrantfile.
54+
# You will need to create the manifests directory and a manifest in
55+
# the file base.pp in the manifests_path directory.
56+
#
57+
# An example Puppet manifest to provision the message of the day:
58+
#
59+
# # group { "puppet":
60+
# # ensure => "present",
61+
# # }
62+
# #
63+
# # File { owner => 0, group => 0, mode => 0644 }
64+
# #
65+
# # file { '/etc/motd':
66+
# # content => "Welcome to your Vagrant-built virtual machine!
67+
# # Managed by Puppet.\n"
68+
# # }
69+
#
70+
71+
#config.vm.provision :puppet do |puppet|
72+
# puppet.manifests_path = "puppet/manifests"
73+
# puppet.manifest_file = "ubuntu-apache2-mysql-php5.pp"
74+
#end
75+
76+
# Enable provisioning with chef solo, specifying a cookbooks path, roles
77+
# path, and data_bags path (all relative to this Vagrantfile), and adding
78+
# some recipes and/or roles.
79+
#
80+
# config.vm.provision :chef_solo do |chef|
81+
# chef.cookbooks_path = "../my-recipes/cookbooks"
82+
# chef.roles_path = "../my-recipes/roles"
83+
# chef.data_bags_path = "../my-recipes/data_bags"
84+
# chef.add_recipe "mysql"
85+
# chef.add_role "web"
86+
#
87+
# # You may also specify custom JSON attributes:
88+
# chef.json = { :mysql_password => "foo" }
89+
# end
90+
91+
# Enable provisioning with chef server, specifying the chef server URL,
92+
# and the path to the validation key (relative to this Vagrantfile).
93+
#
94+
# The Opscode Platform uses HTTPS. Substitute your organization for
95+
# ORGNAME in the URL and validation key.
96+
#
97+
# If you have your own Chef Server, use the appropriate URL, which may be
98+
# HTTP instead of HTTPS depending on your configuration. Also change the
99+
# validation key to validation.pem.
100+
#
101+
# config.vm.provision :chef_client do |chef|
102+
# chef.chef_server_url = "https://api.opscode.com/organizations/ORGNAME"
103+
# chef.validation_key_path = "ORGNAME-validator.pem"
104+
# end
105+
#
106+
# If you're using the Opscode platform, your validator client is
107+
# ORGNAME-validator, replacing ORGNAME with your organization name.
108+
#
109+
# If you have your own Chef Server, the default validation client name is
110+
# chef-validator, unless you changed the configuration.
111+
#
112+
# chef.validation_client_name = "ORGNAME-validator"
113+
end

0 commit comments

Comments
 (0)