├── .dockerignore ├── .env.dev ├── .gitignore ├── Dockerfile ├── README.md ├── docker-compose.prod.yml ├── docker-compose.yml ├── entrypoint.sh ├── gunicorn.conf.py ├── manage.py ├── notes ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_note_allowed_reads.py │ ├── 0003_remove_note_notify_email.py │ ├── 0004_remove_note_password_note_salt.py │ └── __init__.py ├── models.py ├── tasks.py ├── tests.py ├── urls.py └── views.py ├── requirements.txt ├── secret_notes ├── __init__.py ├── asgi.py ├── celery.py ├── settings.py ├── urls.py └── wsgi.py ├── static ├── css │ ├── custom.css │ └── material-kit.min.css └── js │ ├── core │ ├── bootstrap-material-design.min.js │ ├── jquery.min.js │ └── popper.min.js │ ├── material-kit.min.js │ └── plugins │ ├── bootstrap-datetimepicker.js │ └── moment.min.js └── templates ├── _base.html ├── about.html ├── confirm.html ├── created.html ├── home.html ├── note.html └── note_locked.html /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .idea 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/.env.dev -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/gunicorn.conf.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/manage.py -------------------------------------------------------------------------------- /notes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notes/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/notes/admin.py -------------------------------------------------------------------------------- /notes/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/notes/apps.py -------------------------------------------------------------------------------- /notes/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/notes/forms.py -------------------------------------------------------------------------------- /notes/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/notes/migrations/0001_initial.py -------------------------------------------------------------------------------- /notes/migrations/0002_alter_note_allowed_reads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/notes/migrations/0002_alter_note_allowed_reads.py -------------------------------------------------------------------------------- /notes/migrations/0003_remove_note_notify_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/notes/migrations/0003_remove_note_notify_email.py -------------------------------------------------------------------------------- /notes/migrations/0004_remove_note_password_note_salt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/notes/migrations/0004_remove_note_password_note_salt.py -------------------------------------------------------------------------------- /notes/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notes/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/notes/models.py -------------------------------------------------------------------------------- /notes/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/notes/tasks.py -------------------------------------------------------------------------------- /notes/tests.py: -------------------------------------------------------------------------------- 1 | # Create your tests here. 2 | -------------------------------------------------------------------------------- /notes/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/notes/urls.py -------------------------------------------------------------------------------- /notes/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/notes/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/requirements.txt -------------------------------------------------------------------------------- /secret_notes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/secret_notes/__init__.py -------------------------------------------------------------------------------- /secret_notes/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/secret_notes/asgi.py -------------------------------------------------------------------------------- /secret_notes/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/secret_notes/celery.py -------------------------------------------------------------------------------- /secret_notes/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/secret_notes/settings.py -------------------------------------------------------------------------------- /secret_notes/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/secret_notes/urls.py -------------------------------------------------------------------------------- /secret_notes/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/secret_notes/wsgi.py -------------------------------------------------------------------------------- /static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/static/css/custom.css -------------------------------------------------------------------------------- /static/css/material-kit.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/static/css/material-kit.min.css -------------------------------------------------------------------------------- /static/js/core/bootstrap-material-design.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/static/js/core/bootstrap-material-design.min.js -------------------------------------------------------------------------------- /static/js/core/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/static/js/core/jquery.min.js -------------------------------------------------------------------------------- /static/js/core/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/static/js/core/popper.min.js -------------------------------------------------------------------------------- /static/js/material-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/static/js/material-kit.min.js -------------------------------------------------------------------------------- /static/js/plugins/bootstrap-datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/static/js/plugins/bootstrap-datetimepicker.js -------------------------------------------------------------------------------- /static/js/plugins/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/static/js/plugins/moment.min.js -------------------------------------------------------------------------------- /templates/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/templates/_base.html -------------------------------------------------------------------------------- /templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/templates/about.html -------------------------------------------------------------------------------- /templates/confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/templates/confirm.html -------------------------------------------------------------------------------- /templates/created.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/templates/created.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/templates/note.html -------------------------------------------------------------------------------- /templates/note_locked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roushikk/secret_notes/HEAD/templates/note_locked.html --------------------------------------------------------------------------------