AI-Powered Photos App for the Decentralized Web
Go to file
2018-09-07 16:05:22 +02:00
cmd/photoprism
docs/img Proof-of-concept for advanced search for; updated docs 2018-09-07 16:05:22 +02:00
frontend Proof-of-concept for advanced search for; updated docs 2018-09-07 16:05:22 +02:00
recognize
server
testdata
.dockerignore
.gitignore
.travis.yml
album.go
browse.go
camera.go
CHANGELOG.md
config_test.go
config.example.yml
config.go
converter_test.go
converter.go
docker-compose.travis.yml
docker-compose.yml
Dockerfile
export.go
file.go
go.mod
go.sum
importer_test.go
importer.go
indexer.go
LICENSE
location.go
Makefile
mediafile_exif_test.go
mediafile_exif.go
mediafile_test.go
mediafile.go
photo.go
query.go
README.md Proof-of-concept for advanced search for; updated docs 2018-09-07 16:05:22 +02:00
tag.go
thumbnails_test.go
thumbnails.go
util_test.go
util.go

PhotoPrism

Powered By MIT License Code Quality GitHub issues Build Status

PhotoPrism is a server-based application for privately managing large amounts of JPEG and RAW files. It is functionally similar to popular cloud services such as Flickr or Google Photos. Originals are stored in the file system in a structured way for easy backup and reliable long-term accessibility.

Note: 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

User Interface

The Web interface for searching and organizing photos is based on Vuetify, a Material Design component framework for Vue.js 2.

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 (not recommended).

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 tests and commands:

docker-compose exec photoprism bash
make
make test
make install
go run cmd/photoprism/photoprism.go start

See Quick and easy guide for migrating to Go 1.11 modules for an introduction to Go Modules and Makefiles.

Concept