keeweb/README.md

75 lines
3.1 KiB
Markdown
Raw Normal View History

2016-04-15 23:45:25 +02:00
# Free cross-platform password manager compatible with KeePass
2015-10-17 23:49:24 +02:00
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
2016-02-07 14:28:05 +01:00
![screenshot](https://habrastorage.org/files/ec9/108/3de/ec91083de3e64574a504bc438d038dec.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
2016-08-21 20:49:00 +02:00
Apps: [Web](https://app.keeweb.info/), [Desktop](https://github.com/keeweb/keeweb/releases/latest)
Timeline: [Release Notes](release-notes.md), [TODO](https://github.com/keeweb/keeweb/wiki/TODO)
On one page: [Features](https://keeweb.info/#features), [FAQ](https://github.com/keeweb/keeweb/wiki/FAQ)
2016-02-02 18:18:49 +01:00
Website: [keeweb.info](https://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
2017-02-24 23:42:46 +01:00
The app is already rather stable, so basic stuff should work.
Project roadmap with planned features and approximate schedule is on [TODO](https://github.com/keeweb/keeweb/wiki/TODO) page.
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).
2017-08-29 18:35:18 +02:00
You can download the latest distribution files from [gh-pages](https://github.com/keeweb/keeweb/archive/gh-pages.zip) branch.
2016-04-22 21:41:28 +02:00
2016-04-22 21:40:23 +02:00
If you are using Docker:
2016-04-22 21:41:28 +02:00
2016-04-22 21:40:23 +02:00
1. put your dh.pem, cert.pem, key.pem to /etc/nginx/external/
2. run this script:
```bash
docker run --name keeweb -d -p 443:443 -p 80:80 -v $EXT_DIR:/etc/nginx/external/ antelle/keeweb
```
2016-04-22 21:41:28 +02:00
2017-02-27 20:47:15 +01:00
To make Dropbox work in your self-hosted app, [go to this Wiki page](https://github.com/keeweb/keeweb/wiki/Dropbox-and-GDrive).
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.
2017-01-28 23:13:39 +01:00
To run Electron app without building installer, install electron package (`npm install electron -g`), build the app with `grunt` and start in this way:
2015-11-14 16:31:39 +01:00
```bash
2016-09-18 12:30:09 +02:00
$ grunt dev
2016-08-13 16:28:06 +02:00
$ npm run-script electron
2015-11-14 16:31:39 +01:00
```
2015-10-25 09:25:48 +01:00
For debug build:
2016-09-18 12:30:09 +02:00
1. run `grunt dev`
2. open `http://localhost:8085/tmp`
2015-10-25 09:25:48 +01:00
# Contributing
2016-03-04 18:39:40 +01:00
Please, read contribution guidelines: [for issues](.github/ISSUE_TEMPLATE.md) and [for pull requests](.github/PULL_REQUEST_TEMPLATE.md).
2016-07-20 19:46:50 +02:00
For pull requests: branch is important! `master` is only for hotfixes, `develop` is for new features.
Here's a [list of issues](https://github.com/keeweb/keeweb/labels/need%20help) which need help.
2016-09-18 18:52:09 +02:00
Also you can help by [translating KeeWeb](https://keeweb.oneskyapp.com) to your language.
2017-01-29 11:04:55 +01:00
### Important notes for pull requests
- please branch from `develop`, not `master`
- don't edit translation files except base.json, they will be replaced
2016-09-18 23:05:21 +02:00
# Donations
2016-09-18 18:52:09 +02:00
2017-05-13 11:48:04 +02:00
KeeWeb is not free to develop. It takes time, requires paid code signing certificates and domains.
You can help the project or say "thank you" with this button:
2017-05-12 18:43:04 +02:00
[![Donate with PayPal](https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.me/dvitkovsky)
2016-09-18 18:52:09 +02:00
Please note: donation does not imply any type of service contract.
2015-10-25 09:25:48 +01:00
# License
2016-06-04 22:34:49 +02:00
[MIT](https://github.com/keeweb/keeweb/blob/master/LICENSE.txt)