Last active
April 28, 2020 07:24
-
-
Save jschee/c8254cf067e2be675da284f3b1c01155 to your computer and use it in GitHub Desktop.
rails new project
This file contains hidden or 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
rails new \ | |
-d postgresql \ | |
--skip-keeps \ | |
--skip-test \ | |
--skip-bundle \ | |
--skip-javascript \ | |
-S \ | |
-C \ | |
-m https://raw.githubusercontent.com/jschee/temp_asset/master/asset/eightyeight_template.rb \ | |
APP_NAME | |
-d postgresql = database selection | |
--skip-keeps = google versioning system | |
--skip-test = skip out on minitest, replace with rspec | |
--skip-bundle = don't bundle | |
-S = no sprockets | |
-C = no actioncable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment