Browse Source

fix: readme

ANX 5 years ago
parent
commit
78fcac9a1f
2 changed files with 4 additions and 4 deletions
  1. 2 2
      README.md
  2. 2 2
      template.rb

+ 2 - 2
README.md

@@ -20,13 +20,13 @@ You'll need the following installed to run the template successfully:
 #### Creating a new app
 
 ```bash
-rails new myapp -d postgresql -m https://raw.githubusercontent.com/excid3/jumpstart/master/template.rb
+rails new myapp -d postgresql -m http://gogs.anxgang.com/Hiskio/jumpstart/raw/master/template.rb --skip-coffee --skip-test
 ```
 
 Or if you have downloaded this repo, you can reference template.rb locally:
 
 ```bash
-rails new myapp -d postgresql -m template.rb
+rails new myapp -d postgresql -m template.rb --skip-coffee --skip-test
 ```
 
 #### Cleaning up

+ 2 - 2
template.rb

@@ -13,7 +13,7 @@ def add_template_repository_to_source_path
     at_exit { FileUtils.remove_entry(tempdir) }
     git clone: [
       "--quiet",
-      "https://github.com/excid3/jumpstart.git",
+      "http://gogs.anxgang.com/Hiskio/jumpstart.git",
       tempdir
     ].map(&:shellescape).join(" ")
 
@@ -171,7 +171,7 @@ after_bundle do
   add_bootstrap
   add_sidekiq
   add_procodile
-  add_webpack
+  # add_webpack
   add_multiple_authentication
 
   copy_templates