├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── example.env ├── manage.py ├── media └── demo.gif ├── prototype ├── __init__.py ├── asgi.py ├── helpers │ └── openai_helper.py ├── settings.py ├── urls.py └── wsgi.py ├── requirements.txt ├── setup.sh ├── static ├── css │ └── styles.css ├── favicon.ico └── js │ └── editor.js ├── tapnote ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py └── views.py └── templates └── tapnote ├── 404.html ├── base.html ├── editor.html └── view_note.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY= -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/manage.py -------------------------------------------------------------------------------- /media/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/media/demo.gif -------------------------------------------------------------------------------- /prototype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prototype/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/prototype/asgi.py -------------------------------------------------------------------------------- /prototype/helpers/openai_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/prototype/helpers/openai_helper.py -------------------------------------------------------------------------------- /prototype/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/prototype/settings.py -------------------------------------------------------------------------------- /prototype/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/prototype/urls.py -------------------------------------------------------------------------------- /prototype/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/prototype/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/setup.sh -------------------------------------------------------------------------------- /static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/static/css/styles.css -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/static/js/editor.js -------------------------------------------------------------------------------- /tapnote/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/tapnote/migrations/0001_initial.py -------------------------------------------------------------------------------- /tapnote/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapnote/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/tapnote/models.py -------------------------------------------------------------------------------- /tapnote/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/tapnote/views.py -------------------------------------------------------------------------------- /templates/tapnote/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/templates/tapnote/404.html -------------------------------------------------------------------------------- /templates/tapnote/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/templates/tapnote/base.html -------------------------------------------------------------------------------- /templates/tapnote/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/templates/tapnote/editor.html -------------------------------------------------------------------------------- /templates/tapnote/view_note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorniches/tapnote/HEAD/templates/tapnote/view_note.html --------------------------------------------------------------------------------