forked from jstern/dutchman
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tweaks to provisioning and make file to work in VM as Windows host.
Ran into a virtualization error that took a while to debug: gratipay/gratipay.com#2327 pypa/virtualenv#565 Ultimate solution: http://stackoverflow.com/questions/24640819/protocol-error-setting-up-virtualenvironment-through-vagrant-on-ubuntu Run console as admin, shared mounts permissions issue. More evidence of issues on Windows: bash script cannot access vagrant shared mount, even when run as root.
- Loading branch information
1 parent
dd5a6e2
commit 16e2fad
Showing
3 changed files
with
9 additions
and
3 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
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 |
---|---|---|
|
@@ -144,3 +144,6 @@ DEPENDENCIES | |
sqlite3 | ||
twitter-bootstrap-rails | ||
web-console (~> 2.0) | ||
|
||
BUNDLED WITH | ||
1.11.2 |
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
db: | ||
./bin/rake db:setup | ||
rake db:setup | ||
|
||
deps: | ||
bundle install | ||
rails generate bootstrap:install static | ||
|
||
start: | ||
./bin/rails server -b 0.0.0.0 | ||
rails server -b 0.0.0.0 | ||
|
||
.PHONY: db |