AI-Powered Photos App for the Decentralized Web
Go to file
2018-09-05 18:24:14 +02:00
cmd/photoprism Improved Docker configuration 2018-09-05 18:05:34 +02:00
docs/img Cropped logo 2018-08-23 14:31:40 +02:00
frontend
recognize
server
testdata
.dockerignore
.gitignore Improved Docker configuration 2018-09-05 18:05:34 +02:00
.travis.yml Running dep ensure in .travis.yml 2018-09-05 18:24:14 +02:00
album.go
browse.go
camera.go
config_test.go
config.example.yml
config.go Improved Docker configuration 2018-09-05 18:05:34 +02:00
converter_test.go
converter.go
docker-compose.travis.yml Using pre-built Docker image for Travis CI 2018-09-05 18:16:53 +02:00
docker-compose.yml Improved Docker configuration 2018-09-05 18:05:34 +02:00
Dockerfile Improved Docker configuration 2018-09-05 18:05:34 +02:00
export.go
file.go
Gopkg.lock Improved Docker configuration 2018-09-05 18:05:34 +02:00
Gopkg.toml
importer_test.go
importer.go
indexer.go
LICENSE
location.go
mediafile_exif_test.go
mediafile_exif.go
mediafile_test.go
mediafile.go
photo.go
query.go
README.md Update README.md 2018-08-23 14:45:42 +02:00
tag.go
thumbnails_test.go
thumbnails.go
util_test.go
util.go

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
  • 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