1
Fork 0
Photo gallery for self-hosted personal servers
Go to file
viktorstrate a2d0509cad Update scanner to delete removed files 2020-02-12 18:10:52 +01:00
.vscode Add eslint to check syntax 2019-08-16 13:25:50 +02:00
api Update scanner to delete removed files 2020-02-12 18:10:52 +01:00
docker Add docker-compose with proxy 2019-08-30 15:43:24 +02:00
screenshots Use download.js to downlad images 2019-08-30 16:34:51 +02:00
ui Further work on shares 2020-02-11 15:36:12 +01:00
.gitignore Update scanner to delete removed files 2020-02-12 18:10:52 +01:00
.prettierrc Move old api folder 2020-01-30 13:49:28 +01:00
LICENSE.txt Change license to GPL v3 2019-08-12 16:22:54 +02:00
README.md Update readme 2020-02-10 12:22:42 +01:00
docker-compose.proxy-example.yml Add install guide to readme 2019-08-30 16:27:24 +02:00
docker-compose.without-proxy-example.yml Add install guide to readme 2019-08-30 16:27:24 +02:00
now.json Work towards authentication 2019-07-05 00:36:32 +02:00

README.md

PhotoView

SERVER REWRITE. The api is currently being rewritten in Golang, use branch old-nodejs-server for the most stable release

screenshot

Demo site

Visit https://photos.qpqp.dk/

Username: demo Password: demo

Aim of the project

The aim of this project is to make a simple and user-friendly photo gallery application, that is easy to host on a personal server, to easily view the photos located on that server.

Main features

The software is still in early development, and many of the following features, may not have been fully implemented yet.

  • Closely tied to the file system. The website presents the images found on the local filesystem of the server, directories are mapped to albums.
  • User management. Each user is created along with a path on the local filesystem, photos within that path can be accessed by that user.
  • Photo sharing. Photos and albums can easily be shared with other users or publicly with a unique URL.
  • Made for photography. The website is ment as a way to present photographies, and thus supports RAW file formats, and EXIF parsing.

Getting started - Setup with Docker

This section describes how to get PhotoView up and running on your server with Docker. Make sure you have Docker and docker-compose installed and running on your server

  1. Clone this repository by executing
$ git clone https://github.com/viktorstrate/photoview
$ cd photoview
  1. Duplicate docker-compose.proxy-example.yml and name the new file docker-compose.yml
  2. Edit docker-compose.yml, find the comments starting with Change This:, and change the values, to properly match your setup.
  3. Start the server by running the following command, inside the photoview directory
$ docker-compose up -d

If the endpoint or the port hasn't been changed in the docker-compose.yml file, PhotoView can now be accessed at http://localhost:8080

Initial Setup

If everything is setup correctly, you should be presented with an initial setup wizard, when accessing the website the first time.

Initial setup

Enter a new username and password.

For the photo path, enter the path in the docker container where your photos are located. This can be set from the docker-compose.yml file under api -> volumes. The default location is /photos

A new admin user will be created, with access to the photos located at the path provided under the initial setup.

The photos will have to be scanned for the photos to show up, you can force a scan, by navigating to Settings and clicking on Scan All

Setup development environment

Local setup

  1. Install a local mysql server, and make a new database
  2. Rename /api/example.env to .env and update the MYSQL_URL field
  3. Rename /ui/example.env to .env

/api

Start API server

cd ./api && go run server/server.go

/ui

The above command will start the GraphQL API in the foreground, so in another terminal session start the UI development server:

Start UI server

cd ./ui && npm start

The site can now be accessed at localhost:1234. And the graphql playground at localhost:4001