A project being made for journalling freely and safely with encryption so that, no one can read your writings without your permissions
This project is still under development. We are building the API's right now, and soon would start working on the frontend part of the project as well.
Things Required to run the project
- Node
- Redis
- Postresql
How to run the project
- Download the project
- Run the command
npm install
- Make a new .env file and add all the necessary credentials (consider example file -> .env.example)
Tables to be created
CREATE TABLE USERS (id VARCHAR(50) PRIMARY KEY, email VARCHAR(50) UNIQUE, name VARCHAR(50))