notes/readme.md

39 lines
1.1 KiB
Markdown
Raw Normal View History

2023-01-18 12:34:55 +01:00
# notes
2023-09-21 22:04:20 +02:00
## Getting started
2023-01-18 12:34:55 +01:00
2023-09-21 22:04:20 +02:00
Launch index.html from your web server or try https://notes.ouvaton.org.
2023-01-18 12:34:55 +01:00
2023-09-21 22:04:20 +02:00
Your notes are stored in your browser local storage.
2023-01-18 12:34:55 +01:00
2023-10-26 10:30:29 +02:00
## Usage
* command palette: ctrl+shift+p
* notes list: ctrl+p
2023-09-21 22:04:20 +02:00
## Remote mode
2023-01-18 12:34:55 +01:00
2023-10-26 10:30:29 +02:00
You can use remote mode with your own php server to access your notes from the cloud:
2023-01-18 12:34:55 +01:00
* put the source files on your php server
2023-07-17 09:42:02 +02:00
* browse index.html
* launch command "edit pgp keys" and paste your public and private keys as a single file (passphrase is not supported)
* switch to remote mode: ctrl+shift+V
2023-01-18 12:34:55 +01:00
2023-10-26 10:30:29 +02:00
Your data file will always be encrypted before reaching the server.
2023-07-17 09:42:02 +02:00
2023-10-26 10:30:29 +02:00
To protect your data file access by a password, edit settings.php and change `$password` variable. Your password will be sent from browser to server through a post http query, encrypted with ssl if enabled. It is stored unencrypted in your browser local storage and in the settings.php file on server side.
2023-01-18 12:34:55 +01:00
2023-09-21 22:04:20 +02:00
## Cli tool
2023-09-18 09:14:41 +02:00
```
cd cli
python3 app.py
```
2023-09-21 22:06:13 +02:00
Requires python3, curl, gnupg and a text editor.
2023-09-21 22:04:20 +02:00
2023-10-26 10:30:29 +02:00
## Export your data
2023-01-18 12:34:55 +01:00
2023-10-26 10:30:29 +02:00
You can download your notes in a single json data file, or as flat markdown files in a zip archive.