keeweb/README.md

61 lines
2.5 KiB
Markdown
Raw Normal View History

2015-10-17 23:49:24 +02:00
# KeePass web app (unofficial)
2015-11-15 15:35:36 +01:00
This webapp is a browser password manager compatible with KeePass databases. It doesn't require any server or additional resources.
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)
Timeline: [Release Notes](release-notes.md) [TODO](TODO.md)
2015-10-31 23:20:00 +01:00
On one page: [Features](features.md)
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-10-25 09:06:04 +01:00
Reading and display is mostly complete; modification and sync is under construction, please see [TODO](TODO.md) for more details.
2015-10-25 09:25:48 +01:00
2015-11-08 15:39:09 +01:00
# Known Issues
These major issues are in progress, or will be fixed in next releases, before v1.0:
- dropbox sync is one-way: changes are not loaded from dropbox, only saved
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)
3. change Dropbox app key in index.html file: `sed -i.bak s/qp7ctun6qt5n9d6/your_app_key/g index.html`
(or, if you are building from source, change it [here](scripts/comp/dropbox-link.js#L7))
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.
To run Electron app without building, install electron package (`npm install electron-prebuilt -g`) and start in this way:
```bash
$ cd electron
$ electron . --htmlpath=../tmp
```
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
Plugins are not supported for now. If you want to add a feature, please contact the author first. Pull requests, patches and issues are very welcome.
If you have found an bug, please [open an issue](https://github.com/antelle/keeweb/issues/new) and fill in the app version and your user-agent
(you can find these details in Settings/Help section). Please check [TODO](TODO.md) before creating a feature request.
2015-10-25 09:25:48 +01:00
# License
[MIT](https://github.com/antelle/keeweb/blob/master/MIT-LICENSE.txt)