Skip to content

Commit

Permalink
docs(url): update docs url from http to https
Browse files Browse the repository at this point in the history
  • Loading branch information
jyounce committed Jul 4, 2017
1 parent 98f90cd commit a2e1a58
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -360,7 +360,7 @@ to dist/server/. Example of src/server/package.json:
### Features

* **spa auto inject:** the build will automatically inject scripts and styles into your spa.html ([2b5a556](https://github.com/jyounce/rapid-build/commit/2b5a556))
* **documentation site:** [http://rapid-build.io/](http://rapid-build.io/)
* **documentation site:** [https://rapid-build.io/](https://rapid-build.io/)

### Breaking Changes

Expand Down
12 changes: 6 additions & 6 deletions README.md
@@ -1,5 +1,5 @@
# rapid-build
**[http://rapid-build.io/](http://rapid-build.io/)**
**[rapid-build.io](https://rapid-build.io/)**
Releases are documented here [changelog](https://github.com/jyounce/rapid-build/blob/master/CHANGELOG.md).
Requirements: [git](https://git-scm.com/downloads) and [Node.js](http://nodejs.org/) version >= 4.0.0

Expand Down Expand Up @@ -83,7 +83,7 @@ Must have **package.json**, everthing else is optional.
Rapid build will be expecting this directory structure.
```
dist/ (generated distributable folder created by rapid-build)
src/
src/
├── client/
│ ├── bower_components/ (generated folder via bower.json)
│ ├── images/
Expand Down Expand Up @@ -132,8 +132,8 @@ rapid-build.json (build options - can be cson, json or js file)
# src.server.dir = (string) defaults to 'server'
# src.server.test.dir = (string) defaults to 'test'
# ports.server = (int) defaults to 3000, web server port
# ports.reload = (int) defaults to 3001, browsersync server port
# ports.reloadUI = (int) defaults to 3002, browsersync's user-interface server port
# ports.reload = (int) defaults to 3001, browsersync server port
# ports.reloadUI = (int) defaults to 3002, browsersync's user-interface server port
# ports.test = (int) defaults to 9876, karma server port
# order[scripts|styles][first|last] = (array of strings) = file paths
# angular.modules = (array of strings) = additional angular modules to load, already loaded are ['ngResource', 'ngRoute', 'ngSanitize'] and 'ngMockE2E' based on angular.httpBackend options
Expand Down Expand Up @@ -174,8 +174,8 @@ rapid-build.json (build options - can be cson, json or js file)
# exclude.from.minFile[scripts|styles] = (array of strings) = file paths: exclude script or style files from automatically being generated in the scripts.min.js or styles.min.css file
# exclude.from.spaFile[scripts|styles] = (array of strings) = file paths: exclude script or style files from automatically being generated in the spa.html file
# exclude.from.spaFile.angular.files = (boolean) defaults to false = set to true to exclude the angular files from spa.html the build includes (angular library and modules ngResource, ngRoute and ngSanitize)
# exclude.from.dist[client|server] = (array of strings) = file paths: exclude client or server files from the dist folder
# test.client.browsers = (array of browser names) = phantomjs will run by default, optional browser names are ['chrome', 'firefox', 'ie', 'safari']
# exclude.from.dist[client|server] = (array of strings) = file paths: exclude client or server files from the dist folder
# test.client.browsers = (array of browser names) = phantomjs will run by default, optional browser names are ['chrome', 'firefox', 'ie', 'safari']
# httpProxy = (array of objects) = object format: { context: array or string, options: object } for details see: https://git.io/vVyA0
# browser.open = (boolean) defaults to true = open the browser once the build completes, applies to builds: default, dev and prod:server
# browser.reload = (boolean) defaults to true = reloads the browser once you save your src file, only applies to dev builds
Expand Down
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -3,7 +3,7 @@
"version": "2.0.0",
"tasksPrefix": "rb-",
"description": "Rapid build system utilizing Node.js, Express and AngularJS.",
"homepage": "http://rapid-build.io/",
"homepage": "https://rapid-build.io/",
"author": {
"name": "Judd Younce",
"email": "jyounce@yahoo.com",
Expand Down Expand Up @@ -36,6 +36,7 @@
"create-lib": "node scripts/lib",
"postinstall": "npm run create-lib",
"npm-install-server": "cd src/src/server/ && npm install && npm prune && cd ../../../",
"npm-outdated-server": "cd src/src/server/ && npm outdated; cd ../../../",
"npm-uninstall-server": "cd src/src/server/ && npm uninstall `ls -1 node_modules | tr '/\n' ' '` --no-save && rm -rf node_modules && cd ../../../"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions src/cli/templates/client/views/home.html
Expand Up @@ -6,13 +6,13 @@ <h3>Quick Start Includes:</h3>
<h4>Project Root:</h4>
<ul>
<li>
<a target="_blank" href="http://rapid-build.io/getting-started#directory-structure">directory structure</a>
<a target="_blank" href="https://rapid-build.io/getting-started#directory-structure">directory structure</a>
</li>
<li>
/rapid-build.cson
<small>
- for
<a target="_blank" href="http://rapid-build.io/build-options">build options</a>
<a target="_blank" href="https://rapid-build.io/build-options">build options</a>
</small>
</li>
<li>
Expand Down

0 comments on commit a2e1a58

Please sign in to comment.