3.2 KiB
Hi there, these instructions are meant for the developers of this project.
If you only want to use the Stable Diffusion UI, you've downloaded the wrong file. In that case, please download and follow the instructions at https://github.com/easydiffusion/easydiffusion#installation
Thanks
For developers:
If you would like to contribute to this project, there is a discord for discussion:
Development environment for UI (frontend and server) changes
This is in-flux, but one way to get a development environment running for editing the UI of this project is:
(swap .sh
or .bat
in instructions depending on your environment, and be sure to adjust any paths to match where you're working)
- Install the project to a new location using the usual installation process, e.g. to
/projects/stable-diffusion-ui-archive
- Start the newly installed project, and check that you can view and generate images on
localhost:9000
- Next, please clone the project repository using
git clone
(e.g. to/projects/stable-diffusion-ui-repo
) - Close the server (started in step 2), and edit
/projects/stable-diffusion-ui-archive/scripts/on_env_start.sh
(oron_env_start.bat
) - Comment out the lines near the bottom that copies the
files/ui
folder, e.g:
for .sh
# rm -rf ui
# cp -Rf sd-ui-files/ui .
# cp sd-ui-files/scripts/on_sd_start.sh scripts/
# cp sd-ui-files/scripts/start.sh .
for .bat
REM @xcopy sd-ui-files\ui ui /s /i /Y
REM @copy sd-ui-files\scripts\on_sd_start.bat scripts\ /Y
REM @copy "sd-ui-files\scripts\Start Stable Diffusion UI.cmd" . /Y
- Next, comment out the line at the top of
/projects/stable-diffusion-ui-archive/scripts/on_sd_start.sh
(oron_sd_start.bat
) that copieson_env_start
. For e.g.@rem @copy sd-ui-files\scripts\on_env_start.bat scripts\ /Y
- Delete the current
ui
folder at/projects/stable-diffusion-ui-archive/ui
- Now make a symlink between the repository clone (where you will be making changes) and this archive (where you will be running stable diffusion):
ln -s /projects/stable-diffusion-ui-repo/ui /projects/stable-diffusion-ui-archive/ui
or for Windowsmklink /J \projects\stable-diffusion-ui-archive\ui \projects\stable-diffusion-ui-repo\ui
(link name first, source repo dir second) - Run the project again (like in step 2) and ensure you can still use the UI.
- Congrats, now any changes you make in your repo
ui
folder are linked to this running archive of the app and can be previewed in the browser. - Please update CHANGES.md in your pull requests.
Development environment for Installer changes
Build the Windows installer using Windows, and the Linux installer using Linux. Don't mix the two, and don't use WSL. An Ubuntu VM is fine for building the Linux installer on a Windows host.
- Run
build.bat
or./build.sh
depending on whether you're in Windows or Linux. - Make a new GitHub release and upload the Windows and Linux installer builds created inside the
dist
folder.
For NSIS (on Windows), you need to have these plugins in the nsis/Plugins
folder: amd64-unicode
, x86-ansi
, x86-unicode