-
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.
- Loading branch information
Showing
9 changed files
with
1,832 additions
and
1,449 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 |
---|---|---|
@@ -1,24 +1,27 @@ | ||
Applymyride | ||
================ | ||
|
||
although the app doesn't use ruby, build process requires haml rubygem installed. (works with ruby version 2.2.2) | ||
The app doesn't use ruby directly, but the build process requires the haml rubygem be installed as haml is used to create the html views. (This should work with ruby version > 2.1 and < 3.0, but see below* if < 2.5) | ||
|
||
You may need to install node.js first. | ||
You may need to install node.js first (e.g. `brew install node` on Mac, the latest version should run correctly now). | ||
|
||
+ sudo gem install haml | ||
+ `sudo gem install haml -v '~> 4.0'` (haml 5 will not work) | ||
|
||
+ sudo gem install compass | ||
+ `sudo gem install compass` | ||
|
||
+ npm install | ||
+ `npm install` | ||
|
||
+ sudo npm install -g grunt | ||
+ `sudo npm install -g grunt` | ||
|
||
+ sudo npm install -g bower | ||
+ `sudo npm install -g bower` | ||
|
||
+ bower install | ||
+ `bower install` | ||
|
||
+ grunt serve (to test if it's working) | ||
+ `grunt serve` (to test if it's working) | ||
|
||
\* If your ruby version is < 2.5, you'll need to first install libssl 1.0: `brew install rbenv/tap/[email protected]`, then you'll need to install your version of ruby with the correct command depending on whether you use rbenv or rvm: | ||
+ ``rvm install 2.3.8 -C --with-openssl-dir=`brew --prefix [email protected]\` `` | ||
+ RUBY_CONFIGURE_OPTS="--with-openssl-dir=$(brew --prefix [email protected])" rbenv install 2.3.8 | ||
|
||
Deploy | ||
================ | ||
|
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
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
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
Oops, something went wrong.