stable-diffusion-inspector icon indicating copy to clipboard operation
stable-diffusion-inspector copied to clipboard

大佬这个项目如何搭建?可以出个搭建说明不?

Open kbc1118 opened this issue 1 year ago • 1 comments

大佬这个项目如何搭建?可以出个搭建说明不? 想搭建在debian系统上自己用

kbc1118 avatar Aug 28 '24 05:08 kbc1118

It's very easy to build (and locally host) a page developed in Vue:

  1. Clone the repo

    git clone https://github.com/Akegarasu/stable-diffusion-inspector
    
    cd stable-diffusion-inspector
    
  2. Install npm dependencies and build pages

    npm i
    
    npm run build
    
  3. Host the server (in this case we are using python's http package to host the pages locally)

    python -m http.server -d dist 10801
    

Through the steps you should find the webpage available on 127.0.0.1:10801.

Exception0x0194 avatar Aug 29 '24 04:08 Exception0x0194