immich/README.md

12 lines
429 B
Markdown
Raw Permalink Normal View History

2023-11-29 21:38:09 +01:00
# Immich
2023-11-13 22:41:29 +01:00
2023-11-29 21:38:09 +01:00
Self-hosted photo and video backup solution directly from your mobile phone.
# Installation
2024-01-08 09:28:09 +01:00
You need to ensure your postgres server has the correct database created (immich, or whatever value you set as instance). This postgres instance must also have pgvecto.rs installed (v0.1.11). This database must have 3 extensions created
2023-11-29 21:38:09 +01:00
```
CREATE EXTENSION cube;
CREATE EXTENSION earthdistance;
2024-01-08 09:28:09 +01:00
CREATE EXTENSION vectors;
2023-11-29 21:38:09 +01:00
```