https://github.com/replicate/tilemaker
https://github.com/replicate/tilemaker
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/replicate/tilemaker
- Owner: replicate
- Created: 2023-02-03T20:26:13.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-18T16:49:06.000Z (almost 2 years ago)
- Last Synced: 2025-05-01T04:46:40.748Z (9 months ago)
- Language: JavaScript
- Homepage: https://tilemaker.app
- Size: 8.53 MB
- Stars: 139
- Watchers: 21
- Forks: 26
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🖼️ TileMaker
Generate tiling images from text using AI.
Try it out at [tilemaker.app](http://tilemaker.app)
## How it works
This app is powered by:
🚀 [Replicate](https://replicate.com/?utm_source=project&utm_campaign=tilemaker), a platform for running machine learning models in the cloud.
🎨 [Material Diffusion](https://replicate.com/tstramer/material-diffusion?utm_source=project&utm_campaign=tilemaker), an open-source machine learning model that generates tiling images using Stable Diffusion.
▲ [Vercel](https://vercel.com/), a platform for running web apps.
⚡️ Next.js [server-side API routes](pages/api), for talking to the Replicate API.
👀 Next.js React components, for the browser UI.
🍃 [Tailwind CSS](https://tailwindcss.com/), for styles.
## 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=tilemaker) 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!