This project generates new designs of your room with AI
It uses an ML model called ControlNet to generate variations of rooms. This application gives you the ability to upload a photo of any room, which will send it through this ML Model using a Next.js API route, and return your generated room. The ML Model is hosted on Replicate and Upload is used for image storage.
git clone https://github.com/meteron-ai/roomfix
- Go to Replicate to create an account.
- Click on your profile picture in the top right corner, and click on "Dashboard".
- Click on "Account" in the navbar. And, here you can find your API token, copy it.
- Go to Meteron to create an account.
- Click on "Add Cluster" button and select "Replicate", give it a name
replicate
then set the token from the previous section. - Get your Meteron API key from API keys tab.
- Set this key as an environment variable.
Create a file in root directory of project with env. And store your API key in it, as shown in the .example.env file.
If you'd also like to do rate limiting, create an account on UpStash, create a Redis database, and populate the two environment variables in .env
as well. If you don't want to do rate limiting, you don't need to make any changes.
npm install
Then, run the application in the command line and it will be available at http://localhost:3000
.
npm run dev
- Use
openssl rand -base64 32
to generate NEXTAUTH_SECRET - Add DB URL and SHADOW DB URL from Neon
- Create a new project in console.cloud.google.com
- Click configure consent screen in API credentials page and click external
- Add an app name, do not upload logo, add authorized domain
- Publish app
- Create credentials -> Oauth client ID (web application). The "Authorized redirect URIs" used when creating the credentials must include your full domain and end in the callback path. For example:
- For production: https://{YOUR_DOMAIN}/api/auth/callback/google
- For development: http://localhost:3000/api/auth/callback/google
- Run npx prisma db push && prisma migrate dev && prisma generate
Deploy the example using Vercel: