Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pwntus/stable-diffusion-skybox
https://github.com/pwntus/stable-diffusion-skybox
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pwntus/stable-diffusion-skybox
- Owner: Pwntus
- License: mit
- Created: 2023-06-14T12:36:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-15T00:25:13.000Z (over 1 year ago)
- Last Synced: 2024-12-15T19:05:38.382Z (16 days ago)
- Language: Vue
- Size: 122 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Stable DIffusion Skybox
Create a skybox (equirectangular image) using Stable Diffusion and pan around it in 3D.
## How it works
This app is powered by:
🚀 [Replicate](https://replicate.com/?utm_source=project&utm_campaign=skybox), a platform for running machine learning models in the cloud.
🖍️ [Stable Diffusion](https://replicate.com/stability-ai/stable-diffusion/?utm_source=project&utm_campaign=skybox), an open-source machine learning model that generates images from text.
▲ [Vercel](https://vercel.com/), a platform for running web apps.
⚡️ Nuxt.js [server-side API routes](server/api), for talking to Replicate's API.
👀 [Three.js](https://threejs.org/), for creating a 3D scene.
## Development
1. Install a recent version of [Node.js](https://nodejs.org/)
1. Copy your [Replicate API token](https://replicate.com/account?utm_source=project&utm_campaign=skybox) and set it in your environment:
```
echo "REPLICATE_API_TOKEN=" > .env.local
```
1. Install dependencies and run the server:
```
npm install
npm run dev
```
1. Open [localhost:3000](http://localhost:3000) in your browser. That's it!