-
Notifications
You must be signed in to change notification settings - Fork 2
Update README.md, fix test bug, update depends, replace broken Pow!, no curl to get libs #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
1e15e72
3d06d2f
04a11c0
aace259
5dc2038
d1670d3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| localhost:8888 | ||
| tls off | ||
| root ./website | ||
|
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -63,10 +63,28 @@ Pass `data` and `keys` when you `decrypt` a file: | |
|
|
||
| __Digging In__ | ||
|
|
||
| `brew install node` to install NodeJS and the `npm` package manager. | ||
|
|
||
| `brew install caddy` to install [Caddy web server](https://caddyserver.com) for | ||
| simple testing. | ||
|
|
||
| `git clone https://github.com/45678/miniLockLib.git` to get the source code. | ||
|
|
||
| `cd miniLockLib` | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a very helpful clarification, thank you. |
||
|
|
||
| `npm install -g browserify` which is needed to run `make`. | ||
|
|
||
| `npm install -g docco` which is needed to run `make`. | ||
|
|
||
| `npm install` to install local packages needed to run `make` tasks. | ||
|
|
||
| `make` to compile [CoffeeScript](http://www.coffeescript.org/) files into [ECMAScript](http://www.ecmascript.org/) files in the `library.compiled`, `tests.compiled` and `website` folders. | ||
|
|
||
| `make clean` to start over. | ||
| `make clean` to remove all generated files and start over. | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ditto, good clarification. |
||
|
|
||
| Open a new terminal, and `cd miniLockLib` and start Caddy webserver by | ||
| running `caddy` which will start server on port `8888`. | ||
|
|
||
| `npm run tests` to open the test suite in a web agent `window`. | ||
| `npm run test` in the original terminal to run both the NodeJS and Browser test | ||
| suites. A new browser window, using your default browser, will be opened and the | ||
| NodeJS tests will run in the console. | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Excellent, thank you.