├── .env.sample ├── .gitignore ├── .npmignore ├── README.md ├── lambda ├── DB-accept-webhook-post │ ├── event.json │ └── index.js ├── DB-retrieve-files │ ├── event.json │ └── index.js ├── DB-retrieve-token │ ├── event.json │ └── index.js ├── EN-save-token │ ├── event.json │ └── index.js ├── deploy-zip.js ├── run-lambda.js ├── runtime │ └── shared │ │ └── runtime.js └── shared │ ├── error-handler.js │ └── runtime.js ├── package.json └── www ├── config.json ├── contents ├── _contact │ └── index.md ├── _faq │ └── index.md ├── _index │ ├── index.md │ └── js.md ├── done.json └── shared.json ├── lib ├── cors_headers.js └── publish.js └── templates ├── 404.html ├── _footer.mustache ├── _header.mustache ├── _layout.mustache ├── css ├── bootstrap.css └── site.css ├── favicon.ico ├── images ├── ProcessFlow-SaveNote.png ├── ProcessFlow-Signup.png ├── dropbox-icon.png ├── evernote-icon.png └── logo-64x64.png └── js └── bootstrap.js /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/README.md -------------------------------------------------------------------------------- /lambda/DB-accept-webhook-post/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/lambda/DB-accept-webhook-post/event.json -------------------------------------------------------------------------------- /lambda/DB-accept-webhook-post/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/lambda/DB-accept-webhook-post/index.js -------------------------------------------------------------------------------- /lambda/DB-retrieve-files/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/lambda/DB-retrieve-files/event.json -------------------------------------------------------------------------------- /lambda/DB-retrieve-files/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/lambda/DB-retrieve-files/index.js -------------------------------------------------------------------------------- /lambda/DB-retrieve-token/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/lambda/DB-retrieve-token/event.json -------------------------------------------------------------------------------- /lambda/DB-retrieve-token/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/lambda/DB-retrieve-token/index.js -------------------------------------------------------------------------------- /lambda/EN-save-token/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/lambda/EN-save-token/event.json -------------------------------------------------------------------------------- /lambda/EN-save-token/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/lambda/EN-save-token/index.js -------------------------------------------------------------------------------- /lambda/deploy-zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/lambda/deploy-zip.js -------------------------------------------------------------------------------- /lambda/run-lambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/lambda/run-lambda.js -------------------------------------------------------------------------------- /lambda/runtime/shared/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/lambda/runtime/shared/runtime.js -------------------------------------------------------------------------------- /lambda/shared/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/lambda/shared/error-handler.js -------------------------------------------------------------------------------- /lambda/shared/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/lambda/shared/runtime.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/package.json -------------------------------------------------------------------------------- /www/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/config.json -------------------------------------------------------------------------------- /www/contents/_contact/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/contents/_contact/index.md -------------------------------------------------------------------------------- /www/contents/_faq/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/contents/_faq/index.md -------------------------------------------------------------------------------- /www/contents/_index/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/contents/_index/index.md -------------------------------------------------------------------------------- /www/contents/_index/js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/contents/_index/js.md -------------------------------------------------------------------------------- /www/contents/done.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/contents/done.json -------------------------------------------------------------------------------- /www/contents/shared.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/contents/shared.json -------------------------------------------------------------------------------- /www/lib/cors_headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/lib/cors_headers.js -------------------------------------------------------------------------------- /www/lib/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/lib/publish.js -------------------------------------------------------------------------------- /www/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/templates/404.html -------------------------------------------------------------------------------- /www/templates/_footer.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/templates/_footer.mustache -------------------------------------------------------------------------------- /www/templates/_header.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/templates/_header.mustache -------------------------------------------------------------------------------- /www/templates/_layout.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/templates/_layout.mustache -------------------------------------------------------------------------------- /www/templates/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/templates/css/bootstrap.css -------------------------------------------------------------------------------- /www/templates/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/templates/css/site.css -------------------------------------------------------------------------------- /www/templates/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/templates/favicon.ico -------------------------------------------------------------------------------- /www/templates/images/ProcessFlow-SaveNote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/templates/images/ProcessFlow-SaveNote.png -------------------------------------------------------------------------------- /www/templates/images/ProcessFlow-Signup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/templates/images/ProcessFlow-Signup.png -------------------------------------------------------------------------------- /www/templates/images/dropbox-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/templates/images/dropbox-icon.png -------------------------------------------------------------------------------- /www/templates/images/evernote-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/templates/images/evernote-icon.png -------------------------------------------------------------------------------- /www/templates/images/logo-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/templates/images/logo-64x64.png -------------------------------------------------------------------------------- /www/templates/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgig/Gnotes/HEAD/www/templates/js/bootstrap.js --------------------------------------------------------------------------------