WIP wip
authorJustin Wind <justin.wind+git@gmail.com>
Thu, 12 Jan 2023 18:16:05 +0000 (10:16 -0800)
committerJustin Wind <justin.wind+git@gmail.com>
Thu, 12 Jan 2023 18:16:05 +0000 (10:16 -0800)
commitacb5c9b4682e1a8a97f3446146c6e98a3294fb11
tree2a79f02225a5210abe15b25745905aa301605330
WIP
52 files changed:
.eslintrc.json [new file with mode: 0644]
.gitignore [new file with mode: 0644]
.nycrc.json [new file with mode: 0644]
README.md [new file with mode: 0644]
config/default.js [new file with mode: 0644]
config/development.js [new file with mode: 0644]
config/index.js [new file with mode: 0644]
package.json [new file with mode: 0644]
server.js [new file with mode: 0644]
src/authenticator.js [new file with mode: 0644]
src/common.js [new file with mode: 0644]
src/db/base.js [new file with mode: 0644]
src/db/errors.js [new file with mode: 0644]
src/db/index.js [new file with mode: 0644]
src/db/postgres/index.js [new file with mode: 0644]
src/db/postgres/listener.js [new file with mode: 0644]
src/db/postgres/sql/channel-delete.sql [new file with mode: 0644]
src/db/postgres/sql/channel-insert.sql [new file with mode: 0644]
src/db/postgres/sql/channel-rank-insert.sql [new file with mode: 0644]
src/db/postgres/sql/channel-rank-update.sql [new file with mode: 0644]
src/db/postgres/sql/channel-update.sql [new file with mode: 0644]
src/db/postgres/sql/channels-get-by-account-id.sql [new file with mode: 0644]
src/db/postgres/sql/channels-unread-get-by-account-id.sql [new file with mode: 0644]
src/db/postgres/sql/feed-get-by-id.sql [new file with mode: 0644]
src/db/postgres/sql/feed-insert.sql [new file with mode: 0644]
src/db/postgres/sql/schema/1.0.0/apply.sql [new file with mode: 0644]
src/db/postgres/sql/schema/1.0.0/revert.sql [new file with mode: 0644]
src/db/postgres/sql/schema/init.sql [new file with mode: 0644]
src/db/schema-version-helper.js [new file with mode: 0644]
src/db/sqlite/index.js [new file with mode: 0644]
src/db/sqlite/sql/account-get-by-profile.sql [new file with mode: 0644]
src/db/sqlite/sql/account-insert.sql [new file with mode: 0644]
src/db/sqlite/sql/mention-get-by-id.sql [new file with mode: 0644]
src/db/sqlite/sql/schema/1.0.0/apply.sql [new file with mode: 0644]
src/db/sqlite/sql/schema/1.0.0/revert.sql [new file with mode: 0644]
src/db/sqlite/sql/schema/init.sql [new file with mode: 0644]
src/enum.js [new file with mode: 0644]
src/errors.js [new file with mode: 0644]
src/logger/data-sanitizers.js [new file with mode: 0644]
src/logger/index.js [new file with mode: 0644]
src/manager.js [new file with mode: 0644]
src/service.js [new file with mode: 0644]
src/template/index.js [new file with mode: 0644]
src/template/mention-html.js [new file with mode: 0644]
src/template/root-html.js [new file with mode: 0644]
src/template/template-helper.js [new file with mode: 0644]
static/.external-link.svg.meta [new file with mode: 0644]
static/custom.css [new file with mode: 0644]
static/external-link.svg [new file with mode: 0644]
static/index.html [new file with mode: 0644]
static/robots.txt [new file with mode: 0644]
static/theme.css [new file with mode: 0644]