AI-Powered Photos App for the Decentralized Web
Go to file
2018-08-23 14:44:21 +02:00
cmd/photoprism Improved tile view with link button 2018-08-07 20:17:14 +02:00
docs/img Cropped logo 2018-08-23 14:31:40 +02:00
frontend Separate table for camera models and improved search form (draft) 2018-08-15 09:59:51 +02:00
recognize Implemented index command 2018-07-20 10:54:31 +02:00
server Separate table for camera models and improved search form (draft) 2018-08-15 09:59:51 +02:00
testdata
vendor Reverted back to godep for dependency management because of build errors 2018-08-15 17:08:21 +02:00
.dockerignore Migrated from godep to govendor for dependency management 2018-08-15 16:17:36 +02:00
.gitignore Migrated from godep to govendor for dependency management 2018-08-15 16:17:36 +02:00
.travis.yml Reverted back to godep for dependency management because of build errors 2018-08-15 17:08:21 +02:00
album.go Implemented migrate-db command 2018-07-18 15:17:56 +02:00
browse.go
camera.go Separate table for camera models and improved search form (draft) 2018-08-15 09:59:51 +02:00
config_test.go Implemented index command 2018-07-20 10:54:31 +02:00
config.example.yml Implemented navigation 2018-08-03 15:17:13 +02:00
config.go Separate table for camera models and improved search form (draft) 2018-08-15 09:59:51 +02:00
converter_test.go Fixed filenames in tests to make them pass on case-sensitive filesystems 2018-02-28 11:11:26 +01:00
converter.go Implemented convert command 2018-06-16 14:19:18 +02:00
docker-compose.travis.yml Added docker-compose.travis.yml 2018-02-28 10:31:10 +01:00
docker-compose.yml Implemented frontend proof of concept with Webpack and VueJS 2018-07-27 17:31:39 +02:00
Dockerfile Reverted back to godep for dependency management because of build errors 2018-08-15 17:08:21 +02:00
export.go Implemented migrate-db command 2018-07-18 15:17:56 +02:00
file.go Improved photo search 2018-08-09 23:10:05 +02:00
Gopkg.lock Reverted back to godep for dependency management because of build errors 2018-08-15 17:08:21 +02:00
Gopkg.toml Reverted back to godep for dependency management because of build errors 2018-08-15 17:08:21 +02:00
importer_test.go Implemented index command 2018-07-20 10:54:31 +02:00
importer.go Implemented index command 2018-07-20 10:54:31 +02:00
indexer.go Separate table for camera models and improved search form (draft) 2018-08-15 09:59:51 +02:00
LICENSE
location.go Improved photo search 2018-08-09 23:10:05 +02:00
mediafile_exif_test.go Fixed filenames in tests to make them pass on case-sensitive filesystems 2018-02-28 11:11:26 +01:00
mediafile_exif.go Improved photo search 2018-08-09 23:10:05 +02:00
mediafile_test.go Code clean-up 2018-02-28 10:08:49 +01:00
mediafile.go Separate table for camera models and improved search form (draft) 2018-08-15 09:59:51 +02:00
photo.go Separate table for camera models and improved search form (draft) 2018-08-15 09:59:51 +02:00
query.go Improved photo search 2018-08-09 23:10:05 +02:00
README.md Update README.md 2018-08-23 14:44:21 +02:00
tag.go Implemented navigation 2018-08-03 15:17:13 +02:00
thumbnails_test.go Implemented index command 2018-07-20 10:54:31 +02:00
thumbnails.go Improved photo search 2018-08-09 23:10:05 +02:00
util_test.go
util.go Code clean-up 2018-02-28 10:08:49 +01:00

PhotoPrism

A free tool for importing, indexing and searching large amounts of JPEG and RAW files

Build Status Code Quality GitHub issues MIT License

Originals, thumbnails and metadata are stored in the file system for easy backup and reliable long-term accessibility.

This software is still alpha and under active development. You're welcome to join our team.

Our goal is to provide the following features (tested as a proof-of-concept):

  • High-performance command line tool
  • Web frontend
  • No proprietary or binary data formats
  • Duplicate detection
  • Automated tagging using Google TensorFlow
  • Support for reverse geocoding based on latitude and longitude
  • Image search with powerful filters
  • Easy backup and export

Setup

Before you start, make sure you got Git and Docker installed on your system. Instead of using Docker, you can also setup your own runtime environment based on the existing Docker configuration.

Step 1: Run Git to clone this project:

git clone git@github.com:photoprism/photoprism.git

Step 2: Start Docker containers:

cd photoprism
docker-compose up

Note: This docker-compose configuration is for testing and development purposes only.

Step 3: Open a terminal to run commands and unit tests:

docker-compose exec photoprism bash
dep ensure
go test
go run cmd/photoprism/photoprism.go migrate-db
go run cmd/photoprism/photoprism.go start

Concept