A pretty easy django notes app. Have a note save it!
- CRUD notes
- Copies selected text automatically
- Easily share
- Download note as PDF
- Beautiful yet simple UI
- Encrypted Data so that no one can phish it! (using django-cryptography)
- Clone the repository
git clone https://github.com/pWoLiAn/notepad.git
- Install Dependencies
cd notepad
pip3 install -r requirements.txt
- Go to
notepad/notekeeper/notekeeper/
Edit yoursettings.py
file and enter your secret key. You can generate a key using the link - Django Key
SECRET_KEY=<your_secret_key>
- cd into notekeeper folder
cd notekeeper
- Run django migrations
python3 manage.py makemigrations
python3 manage.py migrate
- Run django server
python3 manage.py runserver [OPTIONAL PORT ID]