Framework for visualizing large numbers of images
Table of Contents
This project is the backend of Megallery, a framework for visualizing large numbers of images.
Such a project is interesting since I couldn't find a publicly available app that can display large numbers of images (>250k).
It also serves the purpose of helping you recognize patterns about your collections of images.
To get a local copy up and running follow these simple example steps.
-
PostgreSQL
docker-compose up megallery-db
You're also going to need to set the
DATABASE_PORT
andDATABASE_URL
env variables accordingly. There is dotenv support. -
Rust:
You can get a Rust compiler installed using rustup
- Clone the repo
git clone https://github.com/EmmChriss/megallery-backend
- Start the PostgreSQL instance
docker-compose up megallery-db
- Set up the environment
cp .env.example .env
- Run using Cargo
cargo run --release
To use this backend, you're going to need the frontend as well.
Molnar Krisztian - [email protected]
Project Link: https://github.com/EmmChriss/megallery-backend