├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── cla.yml │ └── docker-build.yml ├── .gitignore ├── .yarnrc ├── CHANGELOG.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── SECURITY.md ├── VERSION.json ├── bin ├── info.js ├── info.js.map ├── list.js ├── list.js.map ├── logcat.js ├── logcat.js.map ├── logtail.js ├── logtail.js.map ├── main.js ├── main.js.map ├── photostructure.js.map ├── sync-file.js ├── sync-file.js.map ├── sync.js ├── sync.js.map ├── web.js └── web.js.map ├── defaults.env ├── docker-entrypoint.sh ├── icc ├── AdobeCompat-v2.icc ├── AppleCompat-v2.icc ├── ColorMatchCompat-v2.icc ├── DisplayP3-v2-magic.icc ├── DisplayP3-v2-micro.icc ├── DisplayP3-v4.icc ├── DisplayP3Compat-v2-magic.icc ├── DisplayP3Compat-v2-micro.icc ├── DisplayP3Compat-v4.icc ├── ProPhoto-v2-magic.icc ├── ProPhoto-v2-micro.icc ├── ProPhoto-v4.icc ├── Rec2020-v2-magic.icc ├── Rec2020-v2-micro.icc ├── Rec2020-v4.icc ├── Rec2020Compat-v2-magic.icc ├── Rec2020Compat-v2-micro.icc ├── Rec2020Compat-v4.icc ├── Rec709-v2-magic.icc ├── Rec709-v2-micro.icc ├── Rec709-v4.icc ├── WideGamutCompat-v2.icc ├── _info.md ├── license ├── readme.md ├── sGrey-v2-magic.icc ├── sGrey-v2-micro.icc ├── sGrey-v2-nano.icc ├── sGrey-v4.icc ├── sRGB-v2-magic.icc ├── sRGB-v2-micro.icc ├── sRGB-v2-nano.icc ├── sRGB-v4.icc └── scRGB-v2.icc ├── migrations ├── models │ ├── 20181030_models.sql │ ├── 20190417_rotation.sql │ ├── 20190425_merged_assets.sql │ ├── 20190426_clean_sha.sql │ ├── 20190426_lowercase_psnet_hostname.sql │ ├── 20190727_find_by_ca_and_geo.sql │ ├── 20190730_session.sql │ ├── 20190922_numeric_captured_at.sql │ ├── 20190923_asset_file_v2_nofk.sql │ ├── 20191013_asset_v2_nofk.sql │ ├── 20200104_video_duration.sql │ ├── 20200116_heartbeat.sql │ ├── 20200127_spread_modes.sql │ ├── 20200128_asset_file_v3_nofk.sql │ ├── 20200130_advisory_lock.sql │ ├── 20200211_updateCount.sql │ ├── 20200512_asset_file_v4_nofk.sql │ ├── 20200515_drop_merged_asset.sql │ ├── 20200816_normalize_asset_file_uris.sql │ ├── 20200823_add_asset_excluded.sql │ ├── 20200826_dedupe_tag_paths.sql │ ├── 20200827_tag_v2_nofk.sql │ ├── 20200923_suffix_tag_paths.sql │ ├── 20200927_progress_v2.sql │ ├── 20201006_progress_meta.sql │ ├── 20201007_operation.sql │ ├── 20201023_dedupe_tag_paths.sql │ ├── 20201026_normalize_asset_file_uris.sql │ ├── 20201030_add_tag_counts.sql │ ├── 20201106_normalize_tag_paths.sql │ ├── 20201112_tag_display_name.sql │ ├── 20201113_drop_tc_tables.sql │ ├── 20201211_tag_description.sql │ ├── 20210322_sha_blocklist.sql │ ├── 20210323_create_tag_fts.sql │ ├── 20210324_asset_fave_delete.sql │ ├── 20210531_asset_duration.sql │ ├── 20210604_changed_tag.sql │ └── 20210627_changed_tag_updated_at.sql └── stats │ ├── 20181030_stats.sql │ ├── 20190312_files_not_bytes.sql │ ├── 20190515_rebuild_queue.sql │ └── 20200106_no_dir_stats.sql ├── package.json ├── photostructure ├── public ├── 192.png ├── 3rd-party-licenses.txt.gz ├── 512.png ├── app │ ├── about.css.gz │ ├── about.css.map.gz │ ├── about.js.gz │ ├── about.js.map.gz │ ├── app.css.gz │ ├── app.css.map.gz │ ├── app.js.gz │ ├── app.js.map.gz │ ├── install.js.gz │ ├── install.js.map.gz │ ├── settings.css.gz │ ├── settings.css.map.gz │ ├── settings.js.gz │ └── settings.js.map.gz ├── apple-touch-icon.png ├── browserconfig.xml ├── eula.html ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── fonts │ ├── roboto-mono-v12-latin-ext_latin-700.woff2 │ ├── roboto-mono-v12-latin-ext_latin-regular.woff2 │ ├── roboto-v20-latin-ext_latin-300.woff2 │ ├── roboto-v20-latin-ext_latin-300italic.woff2 │ ├── roboto-v20-latin-ext_latin-700.woff2 │ ├── roboto-v20-latin-ext_latin-700italic.woff2 │ ├── roboto-v20-latin-ext_latin-900.woff2 │ ├── roboto-v20-latin-ext_latin-italic.woff2 │ └── roboto-v20-latin-ext_latin-regular.woff2 ├── icon.svg.gz ├── images │ ├── 1.png │ ├── 128.png │ ├── 22-blue.png │ ├── 22-blue@2x.png │ ├── 22-blue@3x.png │ ├── 22-dark.png │ ├── 22-dark@2x.png │ ├── 22-dark@3x.png │ ├── 22-gradient.png │ ├── 22-gradient@2x.png │ ├── 22-gradient@3x.png │ ├── 22-light.png │ ├── 22-light@2x.png │ ├── 22-light@3x.png │ ├── 256.png │ ├── 512.png │ ├── 64.png │ ├── antenna.svg.gz │ ├── baby.svg.gz │ ├── ballot-box.svg.gz │ ├── bank.svg.gz │ ├── beetle.svg.gz │ ├── birthday.svg.gz │ ├── books.svg.gz │ ├── busy-circle.svg.gz │ ├── busy.svg.gz │ ├── calendar.svg.gz │ ├── camera.svg.gz │ ├── check.svg.gz │ ├── clear-256.png │ ├── clear-64.png │ ├── clock.svg.gz │ ├── computer.svg.gz │ ├── crane.svg.gz │ ├── error.svg.gz │ ├── fill.svg.gz │ ├── green-check.svg.gz │ ├── green-radio.svg.gz │ ├── handshake.svg.gz │ ├── heart.svg.gz │ ├── home.svg.gz │ ├── info.svg.gz │ ├── logo-blue.svg.gz │ ├── logo-circle.svg.gz │ ├── logo-dark-700pt.svg.gz │ ├── logo-dark.svg.gz │ ├── logo-gradient-gloss-512w.png │ ├── logo-gradient-gloss.svg.gz │ ├── logo-gradient.svg.gz │ ├── logo-horizontal-600w.png │ ├── logo-horizontal-white.svg.gz │ ├── logo-horizontal.svg.gz │ ├── logo-lite.svg.gz │ ├── logo-plus-512w.png │ ├── logo-plus-horizontal.svg.gz │ ├── logo-plus.svg.gz │ ├── logo-white.svg.gz │ ├── maximize.svg.gz │ ├── movie-camera.svg.gz │ ├── photostructure-black.svg.gz │ ├── photostructure-white.svg.gz │ ├── safe.svg.gz │ ├── seedling.svg.gz │ ├── shield.svg.gz │ ├── splashbg1-1024w.jpg.gz │ ├── splashbg2-1024w.jpg.gz │ ├── splashbg3-1024w.jpg.gz │ ├── splashbg4-1024w.jpg.gz │ ├── star2.svg.gz │ ├── starry-night.svg.gz │ ├── surf.svg.gz │ ├── tada.svg.gz │ ├── thanks.svg.gz │ ├── thinking.svg.gz │ ├── thumbs-down.svg.gz │ ├── thumbs-up.svg.gz │ ├── umbrella.svg.gz │ └── warning.svg.gz ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── mstile-70x70.png ├── safari-pinned-tab.svg.gz ├── site.webmanifest └── splash.html ├── start.sh ├── tools ├── licenses │ ├── exiftool │ │ └── LICENSE.txt │ ├── libjpeg-turbo │ │ └── LICENSE.md │ ├── libraw │ │ └── COPYRIGHT.txt │ ├── moveable-type │ │ └── LICENSE.txt │ ├── twemoji │ │ └── LICENSE.txt │ └── vue-my-dropdown │ │ └── LICENSE.txt ├── linux-x64 │ ├── jpegtran │ │ └── jpegtran │ ├── libraw │ │ ├── README.md │ │ ├── dcraw_emu │ │ └── raw-identify │ └── sqlite3 │ │ ├── README.md │ │ └── sqlite3 ├── mac-x64 │ ├── jpegtran │ │ └── jpegtran │ ├── libraw │ │ ├── dcraw_emu │ │ └── raw-identify │ └── sqlite3 │ │ ├── README.md │ │ └── sqlite3 ├── win-ia32 │ ├── jpegtran │ │ ├── jpegtran.exe │ │ └── libjpeg-62.dll │ └── sqlite3 │ │ ├── README.md │ │ └── sqlite3.exe └── win-x64 │ └── libraw │ ├── dcraw_emu.exe │ ├── libraw.dll │ └── raw-identify.exe ├── views ├── about.pug ├── app.pug ├── eula.html ├── settings.pug └── welcome.pug └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | --install.frozen-lockfile true 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/VERSION.json -------------------------------------------------------------------------------- /bin/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/bin/info.js -------------------------------------------------------------------------------- /bin/info.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/bin/info.js.map -------------------------------------------------------------------------------- /bin/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/bin/list.js -------------------------------------------------------------------------------- /bin/list.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/bin/list.js.map -------------------------------------------------------------------------------- /bin/logcat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/bin/logcat.js -------------------------------------------------------------------------------- /bin/logcat.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/bin/logcat.js.map -------------------------------------------------------------------------------- /bin/logtail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/bin/logtail.js -------------------------------------------------------------------------------- /bin/logtail.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/bin/logtail.js.map -------------------------------------------------------------------------------- /bin/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/bin/main.js -------------------------------------------------------------------------------- /bin/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/bin/main.js.map -------------------------------------------------------------------------------- /bin/photostructure.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/bin/photostructure.js.map -------------------------------------------------------------------------------- /bin/sync-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/bin/sync-file.js -------------------------------------------------------------------------------- /bin/sync-file.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/bin/sync-file.js.map -------------------------------------------------------------------------------- /bin/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/bin/sync.js -------------------------------------------------------------------------------- /bin/sync.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/bin/sync.js.map -------------------------------------------------------------------------------- /bin/web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/bin/web.js -------------------------------------------------------------------------------- /bin/web.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/bin/web.js.map -------------------------------------------------------------------------------- /defaults.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/defaults.env -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /icc/AdobeCompat-v2.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/AdobeCompat-v2.icc -------------------------------------------------------------------------------- /icc/AppleCompat-v2.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/AppleCompat-v2.icc -------------------------------------------------------------------------------- /icc/ColorMatchCompat-v2.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/ColorMatchCompat-v2.icc -------------------------------------------------------------------------------- /icc/DisplayP3-v2-magic.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/DisplayP3-v2-magic.icc -------------------------------------------------------------------------------- /icc/DisplayP3-v2-micro.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/DisplayP3-v2-micro.icc -------------------------------------------------------------------------------- /icc/DisplayP3-v4.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/DisplayP3-v4.icc -------------------------------------------------------------------------------- /icc/DisplayP3Compat-v2-magic.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/DisplayP3Compat-v2-magic.icc -------------------------------------------------------------------------------- /icc/DisplayP3Compat-v2-micro.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/DisplayP3Compat-v2-micro.icc -------------------------------------------------------------------------------- /icc/DisplayP3Compat-v4.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/DisplayP3Compat-v4.icc -------------------------------------------------------------------------------- /icc/ProPhoto-v2-magic.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/ProPhoto-v2-magic.icc -------------------------------------------------------------------------------- /icc/ProPhoto-v2-micro.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/ProPhoto-v2-micro.icc -------------------------------------------------------------------------------- /icc/ProPhoto-v4.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/ProPhoto-v4.icc -------------------------------------------------------------------------------- /icc/Rec2020-v2-magic.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/Rec2020-v2-magic.icc -------------------------------------------------------------------------------- /icc/Rec2020-v2-micro.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/Rec2020-v2-micro.icc -------------------------------------------------------------------------------- /icc/Rec2020-v4.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/Rec2020-v4.icc -------------------------------------------------------------------------------- /icc/Rec2020Compat-v2-magic.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/Rec2020Compat-v2-magic.icc -------------------------------------------------------------------------------- /icc/Rec2020Compat-v2-micro.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/Rec2020Compat-v2-micro.icc -------------------------------------------------------------------------------- /icc/Rec2020Compat-v4.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/Rec2020Compat-v4.icc -------------------------------------------------------------------------------- /icc/Rec709-v2-magic.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/Rec709-v2-magic.icc -------------------------------------------------------------------------------- /icc/Rec709-v2-micro.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/Rec709-v2-micro.icc -------------------------------------------------------------------------------- /icc/Rec709-v4.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/Rec709-v4.icc -------------------------------------------------------------------------------- /icc/WideGamutCompat-v2.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/WideGamutCompat-v2.icc -------------------------------------------------------------------------------- /icc/_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/_info.md -------------------------------------------------------------------------------- /icc/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/license -------------------------------------------------------------------------------- /icc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/readme.md -------------------------------------------------------------------------------- /icc/sGrey-v2-magic.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/sGrey-v2-magic.icc -------------------------------------------------------------------------------- /icc/sGrey-v2-micro.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/sGrey-v2-micro.icc -------------------------------------------------------------------------------- /icc/sGrey-v2-nano.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/sGrey-v2-nano.icc -------------------------------------------------------------------------------- /icc/sGrey-v4.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/sGrey-v4.icc -------------------------------------------------------------------------------- /icc/sRGB-v2-magic.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/sRGB-v2-magic.icc -------------------------------------------------------------------------------- /icc/sRGB-v2-micro.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/sRGB-v2-micro.icc -------------------------------------------------------------------------------- /icc/sRGB-v2-nano.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/sRGB-v2-nano.icc -------------------------------------------------------------------------------- /icc/sRGB-v4.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/sRGB-v4.icc -------------------------------------------------------------------------------- /icc/scRGB-v2.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/icc/scRGB-v2.icc -------------------------------------------------------------------------------- /migrations/models/20181030_models.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20181030_models.sql -------------------------------------------------------------------------------- /migrations/models/20190417_rotation.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE 2 | AssetFile 3 | ADD 4 | COLUMN rotation integer; -------------------------------------------------------------------------------- /migrations/models/20190425_merged_assets.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20190425_merged_assets.sql -------------------------------------------------------------------------------- /migrations/models/20190426_clean_sha.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20190426_clean_sha.sql -------------------------------------------------------------------------------- /migrations/models/20190426_lowercase_psnet_hostname.sql: -------------------------------------------------------------------------------- 1 | -- This file will run db/Migrations.lowercase_psnet_hostname() -------------------------------------------------------------------------------- /migrations/models/20190727_find_by_ca_and_geo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20190727_find_by_ca_and_geo.sql -------------------------------------------------------------------------------- /migrations/models/20190730_session.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20190730_session.sql -------------------------------------------------------------------------------- /migrations/models/20190922_numeric_captured_at.sql: -------------------------------------------------------------------------------- 1 | -- This file will run db/Migrations.numeric_captured_at() -------------------------------------------------------------------------------- /migrations/models/20190923_asset_file_v2_nofk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20190923_asset_file_v2_nofk.sql -------------------------------------------------------------------------------- /migrations/models/20191013_asset_v2_nofk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20191013_asset_v2_nofk.sql -------------------------------------------------------------------------------- /migrations/models/20200104_video_duration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20200104_video_duration.sql -------------------------------------------------------------------------------- /migrations/models/20200116_heartbeat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20200116_heartbeat.sql -------------------------------------------------------------------------------- /migrations/models/20200127_spread_modes.sql: -------------------------------------------------------------------------------- 1 | -- This file will run db/Migrations.spread_modes -------------------------------------------------------------------------------- /migrations/models/20200128_asset_file_v3_nofk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20200128_asset_file_v3_nofk.sql -------------------------------------------------------------------------------- /migrations/models/20200130_advisory_lock.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20200130_advisory_lock.sql -------------------------------------------------------------------------------- /migrations/models/20200211_updateCount.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE 2 | Asset 3 | ADD 4 | COLUMN updateCount integer NOT NULL DEFAULT 0; -------------------------------------------------------------------------------- /migrations/models/20200512_asset_file_v4_nofk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20200512_asset_file_v4_nofk.sql -------------------------------------------------------------------------------- /migrations/models/20200515_drop_merged_asset.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS MergedAsset; -------------------------------------------------------------------------------- /migrations/models/20200816_normalize_asset_file_uris.sql: -------------------------------------------------------------------------------- 1 | -- This file will run db/Migrations.normalize_asset_file_uris -------------------------------------------------------------------------------- /migrations/models/20200823_add_asset_excluded.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20200823_add_asset_excluded.sql -------------------------------------------------------------------------------- /migrations/models/20200826_dedupe_tag_paths.sql: -------------------------------------------------------------------------------- 1 | -- This file will run db/Migrations.dedupe_tag_paths -------------------------------------------------------------------------------- /migrations/models/20200827_tag_v2_nofk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20200827_tag_v2_nofk.sql -------------------------------------------------------------------------------- /migrations/models/20200923_suffix_tag_paths.sql: -------------------------------------------------------------------------------- 1 | -- This file will run db/Migrations.suffix_tag_paths -------------------------------------------------------------------------------- /migrations/models/20200927_progress_v2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20200927_progress_v2.sql -------------------------------------------------------------------------------- /migrations/models/20201006_progress_meta.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20201006_progress_meta.sql -------------------------------------------------------------------------------- /migrations/models/20201007_operation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20201007_operation.sql -------------------------------------------------------------------------------- /migrations/models/20201023_dedupe_tag_paths.sql: -------------------------------------------------------------------------------- 1 | -- This file will run db/Migrations.dedupe_tag_paths -------------------------------------------------------------------------------- /migrations/models/20201026_normalize_asset_file_uris.sql: -------------------------------------------------------------------------------- 1 | -- This file will run db/Migrations.normalize_asset_file_uris -------------------------------------------------------------------------------- /migrations/models/20201030_add_tag_counts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20201030_add_tag_counts.sql -------------------------------------------------------------------------------- /migrations/models/20201106_normalize_tag_paths.sql: -------------------------------------------------------------------------------- 1 | -- This file will run db/Migrations.normalize_tag_paths -------------------------------------------------------------------------------- /migrations/models/20201112_tag_display_name.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE 2 | Tag 3 | ADD 4 | COLUMN _displayName varchar(1024); 5 | -------------------------------------------------------------------------------- /migrations/models/20201113_drop_tc_tables.sql: -------------------------------------------------------------------------------- 1 | -- This file will run db/Migrations.drop_tc_tables -------------------------------------------------------------------------------- /migrations/models/20201211_tag_description.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20201211_tag_description.sql -------------------------------------------------------------------------------- /migrations/models/20210322_sha_blocklist.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20210322_sha_blocklist.sql -------------------------------------------------------------------------------- /migrations/models/20210323_create_tag_fts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20210323_create_tag_fts.sql -------------------------------------------------------------------------------- /migrations/models/20210324_asset_fave_delete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20210324_asset_fave_delete.sql -------------------------------------------------------------------------------- /migrations/models/20210531_asset_duration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20210531_asset_duration.sql -------------------------------------------------------------------------------- /migrations/models/20210604_changed_tag.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/models/20210604_changed_tag.sql -------------------------------------------------------------------------------- /migrations/models/20210627_changed_tag_updated_at.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE 2 | ChangedTag 3 | ADD 4 | COLUMN updatedAt bigint; 5 | -------------------------------------------------------------------------------- /migrations/stats/20181030_stats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/stats/20181030_stats.sql -------------------------------------------------------------------------------- /migrations/stats/20190312_files_not_bytes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/stats/20190312_files_not_bytes.sql -------------------------------------------------------------------------------- /migrations/stats/20190515_rebuild_queue.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/migrations/stats/20190515_rebuild_queue.sql -------------------------------------------------------------------------------- /migrations/stats/20200106_no_dir_stats.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS DirStat; -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/package.json -------------------------------------------------------------------------------- /photostructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/photostructure -------------------------------------------------------------------------------- /public/192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/192.png -------------------------------------------------------------------------------- /public/3rd-party-licenses.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/3rd-party-licenses.txt.gz -------------------------------------------------------------------------------- /public/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/512.png -------------------------------------------------------------------------------- /public/app/about.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/app/about.css.gz -------------------------------------------------------------------------------- /public/app/about.css.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/app/about.css.map.gz -------------------------------------------------------------------------------- /public/app/about.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/app/about.js.gz -------------------------------------------------------------------------------- /public/app/about.js.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/app/about.js.map.gz -------------------------------------------------------------------------------- /public/app/app.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/app/app.css.gz -------------------------------------------------------------------------------- /public/app/app.css.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/app/app.css.map.gz -------------------------------------------------------------------------------- /public/app/app.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/app/app.js.gz -------------------------------------------------------------------------------- /public/app/app.js.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/app/app.js.map.gz -------------------------------------------------------------------------------- /public/app/install.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/app/install.js.gz -------------------------------------------------------------------------------- /public/app/install.js.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/app/install.js.map.gz -------------------------------------------------------------------------------- /public/app/settings.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/app/settings.css.gz -------------------------------------------------------------------------------- /public/app/settings.css.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/app/settings.css.map.gz -------------------------------------------------------------------------------- /public/app/settings.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/app/settings.js.gz -------------------------------------------------------------------------------- /public/app/settings.js.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/app/settings.js.map.gz -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/eula.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/eula.html -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/roboto-mono-v12-latin-ext_latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/fonts/roboto-mono-v12-latin-ext_latin-700.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-mono-v12-latin-ext_latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/fonts/roboto-mono-v12-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-v20-latin-ext_latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/fonts/roboto-v20-latin-ext_latin-300.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-v20-latin-ext_latin-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/fonts/roboto-v20-latin-ext_latin-300italic.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-v20-latin-ext_latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/fonts/roboto-v20-latin-ext_latin-700.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-v20-latin-ext_latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/fonts/roboto-v20-latin-ext_latin-700italic.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-v20-latin-ext_latin-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/fonts/roboto-v20-latin-ext_latin-900.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-v20-latin-ext_latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/fonts/roboto-v20-latin-ext_latin-italic.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-v20-latin-ext_latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/fonts/roboto-v20-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /public/icon.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/icon.svg.gz -------------------------------------------------------------------------------- /public/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/1.png -------------------------------------------------------------------------------- /public/images/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/128.png -------------------------------------------------------------------------------- /public/images/22-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/22-blue.png -------------------------------------------------------------------------------- /public/images/22-blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/22-blue@2x.png -------------------------------------------------------------------------------- /public/images/22-blue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/22-blue@3x.png -------------------------------------------------------------------------------- /public/images/22-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/22-dark.png -------------------------------------------------------------------------------- /public/images/22-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/22-dark@2x.png -------------------------------------------------------------------------------- /public/images/22-dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/22-dark@3x.png -------------------------------------------------------------------------------- /public/images/22-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/22-gradient.png -------------------------------------------------------------------------------- /public/images/22-gradient@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/22-gradient@2x.png -------------------------------------------------------------------------------- /public/images/22-gradient@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/22-gradient@3x.png -------------------------------------------------------------------------------- /public/images/22-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/22-light.png -------------------------------------------------------------------------------- /public/images/22-light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/22-light@2x.png -------------------------------------------------------------------------------- /public/images/22-light@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/22-light@3x.png -------------------------------------------------------------------------------- /public/images/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/256.png -------------------------------------------------------------------------------- /public/images/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/512.png -------------------------------------------------------------------------------- /public/images/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/64.png -------------------------------------------------------------------------------- /public/images/antenna.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/antenna.svg.gz -------------------------------------------------------------------------------- /public/images/baby.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/baby.svg.gz -------------------------------------------------------------------------------- /public/images/ballot-box.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/ballot-box.svg.gz -------------------------------------------------------------------------------- /public/images/bank.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/bank.svg.gz -------------------------------------------------------------------------------- /public/images/beetle.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/beetle.svg.gz -------------------------------------------------------------------------------- /public/images/birthday.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/birthday.svg.gz -------------------------------------------------------------------------------- /public/images/books.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/books.svg.gz -------------------------------------------------------------------------------- /public/images/busy-circle.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/busy-circle.svg.gz -------------------------------------------------------------------------------- /public/images/busy.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/busy.svg.gz -------------------------------------------------------------------------------- /public/images/calendar.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/calendar.svg.gz -------------------------------------------------------------------------------- /public/images/camera.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/camera.svg.gz -------------------------------------------------------------------------------- /public/images/check.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/check.svg.gz -------------------------------------------------------------------------------- /public/images/clear-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/clear-256.png -------------------------------------------------------------------------------- /public/images/clear-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/clear-64.png -------------------------------------------------------------------------------- /public/images/clock.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/clock.svg.gz -------------------------------------------------------------------------------- /public/images/computer.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/computer.svg.gz -------------------------------------------------------------------------------- /public/images/crane.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/crane.svg.gz -------------------------------------------------------------------------------- /public/images/error.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/error.svg.gz -------------------------------------------------------------------------------- /public/images/fill.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/fill.svg.gz -------------------------------------------------------------------------------- /public/images/green-check.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/green-check.svg.gz -------------------------------------------------------------------------------- /public/images/green-radio.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/green-radio.svg.gz -------------------------------------------------------------------------------- /public/images/handshake.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/handshake.svg.gz -------------------------------------------------------------------------------- /public/images/heart.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/heart.svg.gz -------------------------------------------------------------------------------- /public/images/home.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/home.svg.gz -------------------------------------------------------------------------------- /public/images/info.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/info.svg.gz -------------------------------------------------------------------------------- /public/images/logo-blue.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/logo-blue.svg.gz -------------------------------------------------------------------------------- /public/images/logo-circle.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/logo-circle.svg.gz -------------------------------------------------------------------------------- /public/images/logo-dark-700pt.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/logo-dark-700pt.svg.gz -------------------------------------------------------------------------------- /public/images/logo-dark.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/logo-dark.svg.gz -------------------------------------------------------------------------------- /public/images/logo-gradient-gloss-512w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/logo-gradient-gloss-512w.png -------------------------------------------------------------------------------- /public/images/logo-gradient-gloss.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/logo-gradient-gloss.svg.gz -------------------------------------------------------------------------------- /public/images/logo-gradient.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/logo-gradient.svg.gz -------------------------------------------------------------------------------- /public/images/logo-horizontal-600w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/logo-horizontal-600w.png -------------------------------------------------------------------------------- /public/images/logo-horizontal-white.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/logo-horizontal-white.svg.gz -------------------------------------------------------------------------------- /public/images/logo-horizontal.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/logo-horizontal.svg.gz -------------------------------------------------------------------------------- /public/images/logo-lite.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/logo-lite.svg.gz -------------------------------------------------------------------------------- /public/images/logo-plus-512w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/logo-plus-512w.png -------------------------------------------------------------------------------- /public/images/logo-plus-horizontal.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/logo-plus-horizontal.svg.gz -------------------------------------------------------------------------------- /public/images/logo-plus.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/logo-plus.svg.gz -------------------------------------------------------------------------------- /public/images/logo-white.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/logo-white.svg.gz -------------------------------------------------------------------------------- /public/images/maximize.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/maximize.svg.gz -------------------------------------------------------------------------------- /public/images/movie-camera.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/movie-camera.svg.gz -------------------------------------------------------------------------------- /public/images/photostructure-black.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/photostructure-black.svg.gz -------------------------------------------------------------------------------- /public/images/photostructure-white.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/photostructure-white.svg.gz -------------------------------------------------------------------------------- /public/images/safe.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/safe.svg.gz -------------------------------------------------------------------------------- /public/images/seedling.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/seedling.svg.gz -------------------------------------------------------------------------------- /public/images/shield.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/shield.svg.gz -------------------------------------------------------------------------------- /public/images/splashbg1-1024w.jpg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/splashbg1-1024w.jpg.gz -------------------------------------------------------------------------------- /public/images/splashbg2-1024w.jpg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/splashbg2-1024w.jpg.gz -------------------------------------------------------------------------------- /public/images/splashbg3-1024w.jpg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/splashbg3-1024w.jpg.gz -------------------------------------------------------------------------------- /public/images/splashbg4-1024w.jpg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/splashbg4-1024w.jpg.gz -------------------------------------------------------------------------------- /public/images/star2.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/star2.svg.gz -------------------------------------------------------------------------------- /public/images/starry-night.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/starry-night.svg.gz -------------------------------------------------------------------------------- /public/images/surf.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/surf.svg.gz -------------------------------------------------------------------------------- /public/images/tada.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/tada.svg.gz -------------------------------------------------------------------------------- /public/images/thanks.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/thanks.svg.gz -------------------------------------------------------------------------------- /public/images/thinking.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/thinking.svg.gz -------------------------------------------------------------------------------- /public/images/thumbs-down.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/thumbs-down.svg.gz -------------------------------------------------------------------------------- /public/images/thumbs-up.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/thumbs-up.svg.gz -------------------------------------------------------------------------------- /public/images/umbrella.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/umbrella.svg.gz -------------------------------------------------------------------------------- /public/images/warning.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/images/warning.svg.gz -------------------------------------------------------------------------------- /public/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/mstile-144x144.png -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/mstile-310x150.png -------------------------------------------------------------------------------- /public/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/mstile-310x310.png -------------------------------------------------------------------------------- /public/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/mstile-70x70.png -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/safari-pinned-tab.svg.gz -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/splash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/public/splash.html -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/start.sh -------------------------------------------------------------------------------- /tools/licenses/exiftool/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/licenses/exiftool/LICENSE.txt -------------------------------------------------------------------------------- /tools/licenses/libjpeg-turbo/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/licenses/libjpeg-turbo/LICENSE.md -------------------------------------------------------------------------------- /tools/licenses/libraw/COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/licenses/libraw/COPYRIGHT.txt -------------------------------------------------------------------------------- /tools/licenses/moveable-type/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/licenses/moveable-type/LICENSE.txt -------------------------------------------------------------------------------- /tools/licenses/twemoji/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/licenses/twemoji/LICENSE.txt -------------------------------------------------------------------------------- /tools/licenses/vue-my-dropdown/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/licenses/vue-my-dropdown/LICENSE.txt -------------------------------------------------------------------------------- /tools/linux-x64/jpegtran/jpegtran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/linux-x64/jpegtran/jpegtran -------------------------------------------------------------------------------- /tools/linux-x64/libraw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/linux-x64/libraw/README.md -------------------------------------------------------------------------------- /tools/linux-x64/libraw/dcraw_emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/linux-x64/libraw/dcraw_emu -------------------------------------------------------------------------------- /tools/linux-x64/libraw/raw-identify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/linux-x64/libraw/raw-identify -------------------------------------------------------------------------------- /tools/linux-x64/sqlite3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/linux-x64/sqlite3/README.md -------------------------------------------------------------------------------- /tools/linux-x64/sqlite3/sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/linux-x64/sqlite3/sqlite3 -------------------------------------------------------------------------------- /tools/mac-x64/jpegtran/jpegtran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/mac-x64/jpegtran/jpegtran -------------------------------------------------------------------------------- /tools/mac-x64/libraw/dcraw_emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/mac-x64/libraw/dcraw_emu -------------------------------------------------------------------------------- /tools/mac-x64/libraw/raw-identify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/mac-x64/libraw/raw-identify -------------------------------------------------------------------------------- /tools/mac-x64/sqlite3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/mac-x64/sqlite3/README.md -------------------------------------------------------------------------------- /tools/mac-x64/sqlite3/sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/mac-x64/sqlite3/sqlite3 -------------------------------------------------------------------------------- /tools/win-ia32/jpegtran/jpegtran.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/win-ia32/jpegtran/jpegtran.exe -------------------------------------------------------------------------------- /tools/win-ia32/jpegtran/libjpeg-62.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/win-ia32/jpegtran/libjpeg-62.dll -------------------------------------------------------------------------------- /tools/win-ia32/sqlite3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/win-ia32/sqlite3/README.md -------------------------------------------------------------------------------- /tools/win-ia32/sqlite3/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/win-ia32/sqlite3/sqlite3.exe -------------------------------------------------------------------------------- /tools/win-x64/libraw/dcraw_emu.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/win-x64/libraw/dcraw_emu.exe -------------------------------------------------------------------------------- /tools/win-x64/libraw/libraw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/win-x64/libraw/libraw.dll -------------------------------------------------------------------------------- /tools/win-x64/libraw/raw-identify.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/tools/win-x64/libraw/raw-identify.exe -------------------------------------------------------------------------------- /views/about.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/views/about.pug -------------------------------------------------------------------------------- /views/app.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/views/app.pug -------------------------------------------------------------------------------- /views/eula.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/views/eula.html -------------------------------------------------------------------------------- /views/settings.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/views/settings.pug -------------------------------------------------------------------------------- /views/welcome.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/views/welcome.pug -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photostructure/photostructure-for-servers/HEAD/yarn.lock --------------------------------------------------------------------------------