├── .gitignore ├── LICENSE ├── README.md ├── SPONSORS ├── Vagrantfile ├── scripts ├── configure-sql-port.ps1 ├── enable-rdp.ps1 ├── install-dot-net.ps1 └── install-sql-server.cmd └── sinatra-app ├── Gemfile ├── Gemfile.lock ├── Rakefile ├── app.rb ├── database.yml ├── db ├── migrate │ └── 20140913010102_create_comments.rb └── schema.rb └── views └── index.erb /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-mssql-express/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-mssql-express/HEAD/README.md -------------------------------------------------------------------------------- /SPONSORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-mssql-express/HEAD/SPONSORS -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-mssql-express/HEAD/Vagrantfile -------------------------------------------------------------------------------- /scripts/configure-sql-port.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-mssql-express/HEAD/scripts/configure-sql-port.ps1 -------------------------------------------------------------------------------- /scripts/enable-rdp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-mssql-express/HEAD/scripts/enable-rdp.ps1 -------------------------------------------------------------------------------- /scripts/install-dot-net.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-mssql-express/HEAD/scripts/install-dot-net.ps1 -------------------------------------------------------------------------------- /scripts/install-sql-server.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-mssql-express/HEAD/scripts/install-sql-server.cmd -------------------------------------------------------------------------------- /sinatra-app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-mssql-express/HEAD/sinatra-app/Gemfile -------------------------------------------------------------------------------- /sinatra-app/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-mssql-express/HEAD/sinatra-app/Gemfile.lock -------------------------------------------------------------------------------- /sinatra-app/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-mssql-express/HEAD/sinatra-app/Rakefile -------------------------------------------------------------------------------- /sinatra-app/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-mssql-express/HEAD/sinatra-app/app.rb -------------------------------------------------------------------------------- /sinatra-app/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-mssql-express/HEAD/sinatra-app/database.yml -------------------------------------------------------------------------------- /sinatra-app/db/migrate/20140913010102_create_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-mssql-express/HEAD/sinatra-app/db/migrate/20140913010102_create_comments.rb -------------------------------------------------------------------------------- /sinatra-app/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-mssql-express/HEAD/sinatra-app/db/schema.rb -------------------------------------------------------------------------------- /sinatra-app/views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-mssql-express/HEAD/sinatra-app/views/index.erb --------------------------------------------------------------------------------