Getting Started β’ Development Setup β’ React API Docs β’ Landing Page β’ Download
Stream | Status |
---|---|
Latest | |
Master |
Global Search is mapped to Ctrl + G and allows search by title and note content
Donations ensure the following:
- π¨ Long term maintenance of the project
- π£ Progress on feature requests
- π Quick responses to bug reports and help requests
Support my projects on GoFundMe
Support my projects via PayPal
Please consider supporting development (See Contributions). We are actively looking for contributors.
Go to the Github releases page and download the installer for your platform. For a web based alternative, use the notorious_web
docker deployment (read on for more on that).
From here you have two options:
- Set up your own backend for usage across multiple devices, including synchronisation and replication.
- Local data directory only: Use Notorious without a backend and store all data locally (not recommended, see Backing Up Data Directory).
You may use the dev environment backend to try Notorious before you set up your own backend. Do not store personal information on this instance because it does not persist data.
host: https://notorious-dev.danielbkr.net
user: admin
password: admin
Notorious backend is a CouchDB database and an optional web interface for accessing Notorious through a web browser. There are 3 containers:
Container | Description | Required |
---|---|---|
couchdb |
CouchDB server | Required |
notorious_web |
Optional web server for accessing Notorious via a web browser. You can comment out this section to disable it. | Optional, but kinda cool |
I have included docker-compose.sample.yaml
and .env.sample
file to get you started quickly. Download and rename these files into a local folder. (You can clone this repository and run the commands below).
mv .env.sample .env
mv docker-compose.sample.yaml docker-compose.yaml
Edit the contents of .env
, providing long and secure passwords and changing the domain names and customise the docker labels to suit your Traefik setup. If you want to access Notorious from outside your home network the backend server needs to be externally accessible.
Envrionment Variable | Description |
---|---|
COUCHDB_USER |
Used by CouchDB server during setup. |
COUCHDB_PASSWORD |
Used by CouchDB server during setup. |
DB_URL |
Used by the web deployment (to access Notorious via a browser). |
DB_SCHEME |
Used by the web deployment (to access Notorious via a browser). |
You can start the stack using docker-compose up -d
.
Before you can start using Notorious you must initialise the CouchDB server by opening this link in your browser. Change the admin:admin
part to match COUCHDB_USER:COUCHDB_PASSWORD
according to the environment variables defined in step 2.
http://admin:admin@hostname:5984/_utils#setup
The notorious_web
container spins up a web server you can use to access your notes through a web browser on the go. Take special note of the volumes
section, which passes in the .env
file to the container because the DB_URL
string is required in order to connect back to your server.
I recommend you put this behind some kind of basic authentication such as Traefik's basic auth
middleware.
YOu can generate static assets for web deployment using the yarn build-web
command. The compiled files are available in the web/dist
directory.
This is applicable only if you don't have a backend server. Backing up or restoring the data directory when data is being synced to a remote server is untested and may have nasty consequences.
Data is stored in C:\Users\<username>\AppData\Roaming\Notorious\data
, backing up this directory will help avoid data loss. Make sure to close Notorious before any backup and restore operation to avoid data corruption.
Ensure your NodeJS installation includes all build tools installed by the installer (python;visualstudio2017-workload-vctools). If not, it's easiest to uninstall and install the latest version of node. This is because the template on which this repository is based depends on node-gyp
which requires Visual studio build tools installed.|
If you are having problems please check: electron-react-boilerplate/electron-react-boilerplate#400
Once that is out of the way and the yarn
command completes successfully, you can start the app for development using yarn dev
. This starts the renderer process in hot-module-replacement mode and starts a webpack dev server that sends hot updates to the renderer process.
yarn dev
Running production version for debugging:
DEBUG_PROD=true yarn build && DEBUG_PROD=true yarn start
To package apps for the local platform:
$ yarn package-win
Contributions in any form are encouraged and happily merged back into the codebase. You can help by:
- star this repository,
- raising issues,
- helping new users with issues they may encounter,
- improving documentation,
- submitting pull request with your kickass new features and bug fixes (raise a discussion issue first),
- recommending the software to others (Spreading the word),
- donating spare change
There is an immense backlog of work to be done on this and I will not be able to do it by myself. If you are into React dev and would like to help me on this project please get in touch.
This license was chosen to ensure this project stays open source and contributor enhancements are made available to the public.
GNU GPLv3 Permissions of this strong copyleft license are conditioned on making available complete source code of licensed works and modifications, which include larger works using a licensed work, under the same license. Copyright and license notices must be preserved. Contributors provide an express grant of patent rights.
See COPYING
for complete license text.