summaryrefslogtreecommitdiff
path: root/README.md
authorGiulio Cesare Solaroli <giulio.cesare@clipperz.com>2011-10-02 23:56:18 (UTC)
committer Giulio Cesare Solaroli <giulio.cesare@clipperz.com>2011-10-02 23:56:18 (UTC)
commitef68436ac04da078ffdcacd7e1f785473a303d45 (patch) (unidiff)
treec403752d66a2c4775f00affd4fa8431b29c5b68c /README.md
parent597ecfbc0249d83e1b856cbd558340c01237a360 (diff)
downloadclipperz-ef68436ac04da078ffdcacd7e1f785473a303d45.zip
clipperz-ef68436ac04da078ffdcacd7e1f785473a303d45.tar.gz
clipperz-ef68436ac04da078ffdcacd7e1f785473a303d45.tar.bz2
First version of the newly restructured repository
Diffstat (limited to 'README.md') (more/less context) (ignore whitespace changes)
-rw-r--r--README.md57
1 files changed, 57 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..be11d8c
--- a/dev/null
+++ b/README.md
@@ -0,0 +1,57 @@
1# Clipperz Password Manager #
2
3This is the code of [Clipperz][clipperz] [Password Manager][password-manager]
4
5More details
6
7ALL the code included in this project, if not otherwise stated, is released with
8the AGPL licence (see LICENCE.txt), and all rights are reserved to Clipperz src.
9
10
11## CONTRIBUTIONS ##
12
13Clipperz is very interested in accepting patches in the form of pull requests, but in
14order to avoid jeopardizing the ownership of the code base, we will require every
15developer to sign Clipperz [Contribution Agreement][contributor-agreement]
16
17
18## BUILDING ##
19
20In order to build the deployable version, you need to invoke the following command:
21
22 ./scripts/build clean install debug --frontends beta --backends php
23
24
25The output will be available in the `target` folder, with a separate folder for each build backend (initially this will be just a `php` folder).
26The 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.
27
28At the moment this is the only combination that (kind of) works, but this script will be gradually extended to be able to build also the /gamma frontend (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)
29
30
31## INSTALLING ##
32
33### PHP + MySQL backend ###
34
35At the moment the only backend that the build script can successfully create is the PHP + MySQL one.
36
37#### PHP ####
38Once 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`.
39
40#### MySQL ####
41The 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.
42Once 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`.
43Here 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.
44The 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!)
45
46More information about bilding the PHP backend may be found in the `doc/install.php.txt` file.
47
48
49## WARNING ##
50
51The resulting application has not been fully tested, so there may be still problems due to the new build script or some other changes that were done due to the new repository structure. So, for the moment, **use it at your own risk!**
52
53
54[clipperz]: http://www.clipperz.com
55[password-manager]: https://www.clipperz.com/beta
56[contributor-agreement]: http://www.clipperz.com/open_source/contributor_agreement
57[pog]: http://www.phpobjectgenerator.com/ \ No newline at end of file