Skip to content
/ getnote Public

A Note taking app similar to Google Keep Note.

Notifications You must be signed in to change notification settings

ycv005/getnote

Repository files navigation

GetNote

Features

  • Google Keep's clone
  • Note with CRUD
  • Tags to organize note
  • Search Notes
  • Beautiful yet simple UI
  • Notes are encrpyted & safe with us. (django-cryptography)

📖 Install

$ git clone https://github.com/ycv005/getnote.git
$ cd getnote
$ pipenv install
$ pipenv shell

# Run Migrations
$ python manage.py migrate

# Create a Superuser:
$ python manage.py createsuperuser

# Confirm everything is working:
$ python manage.py runserver

# Load the site at http://127.0.0.1:8000

To Run the django Interactive interpreter (shell)- python manage.py shell

Any changes to db/models, run following code

python manage.py makemigrations
python manage.py migrate



Any changes to static files, we need to collect static files (as result your new files will be added to static folder)

python manage.py collectstatic



To Know the work flow and progress, follow the branch in series

  1. Master- All the work will be merged to this branch.
  2. Accounts- Works related to cookies based auth.
  3. Note- Works related to Note.

Deployment

Yet to be deployed