summaryrefslogtreecommitdiff
authorGiulio Cesare Solaroli <giulio.cesare@clipperz.com>2013-04-21 15:55:37 (UTC)
committer Giulio Cesare Solaroli <giulio.cesare@clipperz.com>2013-04-21 15:55:37 (UTC)
commite68efe56187ce0f264159c9fe7574e68d1131404 (patch) (side-by-side diff)
tree7391a928cf9936aecec9965a24fd6d04306ad34f
parent959c262afc598c4eeb58fe8fccf90ea8305c0eec (diff)
downloadclipperz-e68efe56187ce0f264159c9fe7574e68d1131404.zip
clipperz-e68efe56187ce0f264159c9fe7574e68d1131404.tar.gz
clipperz-e68efe56187ce0f264159c9fe7574e68d1131404.tar.bz2
Updated readme
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--README.md54
1 files changed, 30 insertions, 24 deletions
diff --git a/README.md b/README.md
index f9ad766..e20082c 100644
--- a/README.md
+++ b/README.md
@@ -3,12 +3,14 @@
##What does Clipperz do?
-You can think of Clipperz as an online vault where you can store any sort of confidential data without worrying about security. It can be used to save and manage passwords, private notes, burglar alarm codes, credit and debit card details, PINs, software keys, …
-Since passwords are the most common type of private information that you need to protect, we have added a great deal of functionality to make Clipperz the best online password manager available thus solving the “password fatigue” problem.
+Clipperz is an online vault where you can store confidential data without worrying about security. It can be used to save and manage passwords, private notes, burglar alarm codes, credit and debit card details, PINs, software keys, …
+Since passwords are the most common type of private information that you need to protect, we have added a great deal of functionality to make Clipperz a great [online password manager][home] thus solving the “password fatigue” problem.
**Clipperz makes the Internet the most convenient and safe place to keep you most precious and sensitive data.**
-Read more on the [Clipperz website][clipperz].
+Read more on the [Clipperz website][home].
+
+[home]: http://www.clipperz.com
## Why an open source version
@@ -16,15 +18,21 @@ Because we want to enable as many people as possible to play with our code. So t
In order to allow you to inspect the code and analyze the traffic it generates between client and server, we had to provide an easy way to locally deploy the whole service.
-So, feel free to host on your own server a web service identical to [Clipperz online password manager][clipperz]. You can choose among multiple backends (PHP/MySQL, Python/AppEngine, …) and you can contribute your own.
+Feel free to host on your machine a web service identical to [Clipperz online password manager][clipperz]. You can choose among **multiple backends** (PHP/MySQL, Python/AppEngine, …) or you can [contribute][CA] your own.
Whatever is your motivation, we would love to hear from you: [get in contact!][contact]
+[CA]: http://www.clipperz.com/open_source/contributor_agreement
+[contact]: http://www.clipperz.com/about/contacts
+
## License
-ALL the code included in this project, if not otherwise stated, is released with the **AGPL v.3 license** (see `LICENSE.txt`), and all rights are reserved to Clipperz Srl. For any use not allowed by the AGPL license, please [contact us][contact] to inquire about licensing options for commercial applications.
+ALL the code included in this project, if not otherwise stated, is released with the [AGPL v3][agpl] license (see `LICENSE.txt`), and all rights are reserved to Clipperz Srl. For any use not allowed by the AGPL license, please [contact us][contact] to inquire about licensing options for commercial applications.
+
+[agpl]: http://www.gnu.org/licenses/agpl.html
+
## Warnings
-Please note that the open source version of Clipperz may not be suitable for mass deployments, depending on how robust is the backend you select. As an example, the current PHP backend lacks several critical capabilities such as bot protection and cuncurrent sessions management.
+Please note that the open source version of Clipperz Password Manager may not be suitable for mass deployments, depending on how robust is the backend you select. As an example, the current PHP backend lacks several critical capabilities such as bot protection and concurrent sessions management.
## Contributions
@@ -41,30 +49,29 @@ Please [download][CA] and review the Contributor Agreement for a complete unders
In order to build the deployable version, you need to invoke the following command:
- ./scripts/build clean install debug --frontends beta --backends php
+ git clone git@github.com:clipperz/password-manager.git
+ cd password-manager
+ ./scripts/build install --backends php python --frontends beta gamma
+
+The output will be available in the `target` folder, with a separate folder for each backend (currently the available options are `php` and `python`).
+The script, invoked with these parameters, will build both the full version (`install` -> index.html) and the debug version (index_debug.html) of the specified frontends.
-The output will be available in the `target` folder, with a separate folder for each build backend (initially this will be just a `php` folder).
-The script, invoked with these parameters, will build both the full version (`install` -> index.html) and the debug version (index_debug.html) of the /beta frontend using the PHP backend.
-
-At the moment this is the only combination that works, but this script will be gradually extended to be able to build also the [/gamma frontend][gamma] (whose code is already in the repository) and possibly also other backends (Python AppEngine being the very first candidate, and a Javascript version per node.js another interesting option)
+Besides PHP and Python, more backends are in the works, most notably a node.js version.
## Installing
### PHP + MySQL backend
-At the moment the only backend that the build script can successfully create is the PHP + MySQL one.
-
-#### PHP
-Once the project has been successfully build, the application needs to be moved in a location where the web server can run it. Everything that is needed is located into `target/php`.
-
-#### MySQL
-The application needs a simple MySQL database; to configure all the credentials to access the previously allocated DB, edit the file found in `php/configuration.php`. You need to edit the file actually used by the web server; this will usually be the one moved into the right place in the previous step.
-Once the application is in place, and the DB credentials have been configured, you should initialize the DB itself; in order to do so, just point your browser at the following url: `http://<host>/<path>/php/setup/index.php`.
-Here you will find the standard [POG][pog] setup page: it should be enough to click the "POG me up!" button at the bottom of the page, and then the "Process" button on the next page.
-The POG interface will allow also a very basic access to the DB data that may be useful to check that the application is actually writing something on the DB (even if you will not be able to make much sense out of the data you will see, as they are all encrypted!)
+* **PHP**
+ Once the project has been successfully build, the application needs to be moved in a location where the web server can run it. Everything that is needed is located into `target/php`.
-More information about building the PHP backend may be found in the `doc/install.php.txt` file.
+* **MySQL**
+ The application needs a simple MySQL database; to configure all the credentials to access the previously allocated DB, edit the file found in `php/configuration.php`. You need to edit the file actually used by the web server; this will usually be the one moved into the right place in the previous step.
+ Once the application is in place, and the DB credentials have been configured, you should initialize the DB itself; in order to do so, just point your browser at the following url: `http://<host>/<path>/php/setup/index.php`.
+ Here you will find the standard [POG][pog] setup page: it should be enough to click the "POG me up!" button at the bottom of the page, and then the "Process" button on the next page.
+ The POG interface will allow also a very basic access to the DB data that may be useful to check that the application is actually writing something on the DB (even if you will not be able to make much sense out of the data you will see, as they are all encrypted!)
+ More information about building the PHP backend may be found in the `doc/install.php.txt` file.
## Disclaimer
@@ -73,6 +80,5 @@ The resulting application has not been fully tested, so there may be still probl
[icon]: http://0.gravatar.com/avatar/2a9fae49ced80a42830a206f88ea1022?size=100
[clipperz]: http://www.clipperz.com
-[contact]: http://clipperz.com/contact
-[CA]: http://www.clipperz.com/open_source/contributor_agreement
+
[pog]: http://www.phpobjectgenerator.com/ \ No newline at end of file