A fully encrypted journal that can be used to store personal info/data.
This program needs a config.json
file to work, format of which can be seen below:
{
"path_to_storage":"", // Path to the journal directory
"salt": "" // A random string for data salting (eg. isdjf@83(@_djk))
}
Module requirements for this program can be found in the requirements.txt
file.
To install all the requirements:
python3 -m pip install -r requirements.txt
Run create_journal.py
using:
python3 create_journal.py
Now the setup is completed, to start using the program run main.py
using:
python3 main.py
Follow the prompts.
Learn more about contributing here