Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 794 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 794 Bytes

⛰️ Infinite Valley

This repository contains a landscape generator that runs forever using SDXL on the backend and designed to be delivered in a chronological view in the browser/webview of your choice.

Preview generation image

Run the Backend

The backend generation is built using SDXL (a free image generation pipeline) and Django. You can be up and running with no configuration beyond installing dependencies by opening your terminal and running:

git clone https://github.com/nftchance/infinite-valley.git
cd infinite-valley/api
python3 -m venv venv
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver

To see the backend processes you will need to create a superuser:

python manage.py createsuperuser