keeweb/README.md

55 lines
2.3 KiB
Markdown
Raw Normal View History

2015-10-17 23:49:24 +02:00
# KeePass web app (unofficial)
2015-11-15 15:36:02 +01:00
This webapp is a browser and desktop password manager compatible with KeePass databases. It doesn't require any server or additional resources.
2015-12-08 17:48:39 +01:00
The app can run either in browser, or as a desktop app.
2015-10-17 23:49:24 +02:00
2015-11-04 07:30:01 +01:00
![screenshot](https://habrastorage.org/files/bfb/51e/d8d/bfb51ed8d19847d8afb827c4fbff7dd5.png)
2015-10-18 00:16:23 +02:00
2015-10-25 09:06:04 +01:00
# Quick Links
2015-10-17 23:49:24 +02:00
2015-11-14 19:20:41 +01:00
Apps: [Web](https://antelle.github.io/keeweb/) [Desktop](https://github.com/antelle/keeweb/releases/latest)
2015-11-25 16:33:32 +01:00
Timeline: [Release Notes](release-notes.md) [TODO](https://github.com/antelle/keeweb/wiki/TODO)
2016-01-31 14:24:51 +01:00
On one page: [Features](http://keeweb.info/#features) [FAQ](https://github.com/antelle/keeweb/wiki/FAQ)
2016-01-31 14:24:12 +01:00
Website: [keeweb.info](http://keeweb.info)
2015-11-10 17:58:38 +01:00
Twitter: [kee_web](https://twitter.com/kee_web)
2015-10-22 07:38:08 +02:00
2015-10-25 09:06:04 +01:00
# Status
2015-10-22 07:38:08 +02:00
2015-12-08 17:48:39 +01:00
The app is already rather stable but might still need polishing, testing and improvements before v1 release, which is expected to happen in Feb 2016.
2015-12-08 06:12:53 +01:00
Please see [TODO](https://github.com/antelle/keeweb/wiki/TODO) for more details.
2015-10-25 09:25:48 +01:00
2015-11-04 10:49:35 +01:00
# Self-hosting
Everything you need to host this app on your server is any static file server. The app is a single HTML file + cache manifest (optionally; for offline access).
You can download the latest distribution files from [gh-pages](https://github.com/antelle/keeweb/tree/gh-pages) branch.
To make Dropbox work in your self-hosted app:
1. [create](https://www.dropbox.com/developers/apps/create) a Dropbox app
2. find your app key (in Dropbox App page, go to Settings/App key)
2015-12-08 17:48:39 +01:00
3. change Dropbox app key in index.html file: `sed -i.bak s/qp7ctun6qt5n9d6/your_app_key/g index.html`
2015-12-24 11:50:33 +01:00
(or, if you are building from source, change it [here](app/scripts/comp/dropbox-link.js#L12))
2015-11-04 10:49:35 +01:00
2015-10-25 09:25:48 +01:00
# Building
The app can be built with grunt: `grunt` (html file will be in `dist/`).
2015-11-14 16:31:39 +01:00
Desktop apps are built with `grunt desktop`. This works only in mac osx as it builds dmg; requires wine.
2015-12-08 17:48:39 +01:00
To run Electron app without building installer, install electron package (`npm install electron-prebuilt -g`), build the app with `grunt` and start in this way:
2015-11-14 16:31:39 +01:00
```bash
2015-12-08 17:48:39 +01:00
$ grunt
$ electron electron --htmlpath=tmp
2015-11-14 16:31:39 +01:00
```
2015-10-25 09:25:48 +01:00
For debug build:
1. run `grunt`
2. run `grunt watch`
3. open `tmp/index.html`
2015-10-25 09:25:48 +01:00
# Contributing
2015-11-21 08:59:28 +01:00
Please, read [contribution guidelines](CONTRIBUTING.md).
2015-10-25 09:25:48 +01:00
# License
[MIT](https://github.com/antelle/keeweb/blob/master/MIT-LICENSE.txt)