Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 499 Bytes

File metadata and controls

36 lines (27 loc) · 499 Bytes

Stable Diffusion on Mac

image

Setup

nvm install v16.13.0
nvm use
npm install

# Termianl 1
npm run dev-server

# Termianl 2
npm run dev

Release steps

git config --global push.followTags true

Update version in package.json to (say) 0.0.8.

git status
git add .
git status
git commit -m 'version bump'
git tag -a v0.0.8 -m 'version 008'
git push