initial commit
authorJustin Wind <justin.wind+git@gmail.com>
Thu, 15 Apr 2021 23:41:19 +0000 (16:41 -0700)
committerJustin Wind <justin.wind+git@gmail.com>
Thu, 15 Jul 2021 22:32:08 +0000 (15:32 -0700)
commit0022b9596090da3878df1986394e97b28a15d881
tree4e257ab605c497d713696c6d5c5a397f3b55df34
initial commit
49 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]
init-static.sql [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/sql/auth-get-by-id.sql [new file with mode: 0644]
src/db/postgres/sql/link-access.sql [new file with mode: 0644]
src/db/postgres/sql/link-expire.sql [new file with mode: 0644]
src/db/postgres/sql/link-get-all.sql [new file with mode: 0644]
src/db/postgres/sql/link-get-by-id.sql [new file with mode: 0644]
src/db/postgres/sql/link-get-by-url.sql [new file with mode: 0644]
src/db/postgres/sql/link-update.sql [new file with mode: 0644]
src/db/postgres/sql/link-upsert.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/sqlite/index.js [new file with mode: 0644]
src/enum.js [new file with mode: 0644]
src/errors.js [new file with mode: 0644]
src/logger.js [new file with mode: 0644]
src/manager.js [new file with mode: 0644]
src/service.js [new file with mode: 0644]
src/slug.js [new file with mode: 0644]
src/template/index.js [new file with mode: 0644]
src/template/info-html.js [new file with mode: 0644]
src/template/report-html.js [new file with mode: 0644]
src/template/root-html.js [new file with mode: 0644]
static/copy-link.svg [new file with mode: 0644]
static/favicon.ico [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]
test/src/authenticator.js [new file with mode: 0644]
test/src/common.js [new file with mode: 0644]
test/src/db/base.js [new file with mode: 0644]
test/src/db/index.js [new file with mode: 0644]
test/src/db/postgres/index.js [new file with mode: 0644]
test/src/db/sqlite/index.js [new file with mode: 0644]
test/src/manager.js [new file with mode: 0644]
test/src/service.js [new file with mode: 0644]
test/src/slug.js [new file with mode: 0644]