Gallery-Archivist/README.md

1.2 KiB

Gallery-Archivist


My try to make a Social media archiving web tool with django and gallery-dl

Features / Roadmap

Note! This is still in early development so stuff will change.

    • Site support
    • Media support and previews
      • PDF (With HTML embed tag)
      • Image (With HTML img tag)
      • other text documents

Development

Note! Instructions are made for a modern linux environment.

  • Step 1: Clone repo
git clone https://git.aroy-art.com/Aroy/Gallery-Archivist.git
  • Step 2: Change dir to the new cloned repo
cd Gallery-Archivist
  • Step 3: Make a python environment
python3 -m venv venv  
  • Step 4: Activate the new python environment
source ./venv/bin/activate
  • Step 5: Install python dependencies
pip install -r requirements.txt
  • Step 6: Copy environment config file and change it to your liking
cp env-sample .env
  • Step 7: Run django server
python3 archivist/manage.py runserver