This demo app showcases how you can generate a full stack app using AI.
- Generative UI using v0 by Vercel
- Generative backend APIs and functions using BuildShip
Full tutorial video on how this app was generated here
LIVE Demo of the generated app: https://generative-full-stack.vercel.app/
- Head to v0 by Vercel
- Describe the app you want to build
- Iterare refine and deploy when it looks as you expect
- Create an account here: BuildShip
- Add an API trigger
- Explore nodes and add the nodes for your usecase or generate logic blocks using AI
- Test the API with sample values
- Click Ship
Get Random: This is the first workflow for the 'Guess the Prompt' game. It generates a unique scene using GPT and then generates an image of this scene with DALL·E.
Remix Template.
Get Score: This is the final workflow for the 'Guess the Prompt' game. It accepts the user's guessed prompt, generates an image for it using DALL·E, and then calculates the similarity score between the guessed prompt and the original prompt.
Remix Template.
Clone repo:
git clone [email protected]:rowyio/Generative-Full-Stack.git
Install dependencies:
npm install
Environment variables:
mv .env.local.example .env.local
Set NEXT_PUBLIC_GET_RANDOM_PROMPT_WORKFLOW
to the endpoint url of your Get Random
workflow.
Set NEXT_PUBLIC_GET_SCORE_WORKFLOW
to the endpoint url of your Get Score
workflow.
Run app:
npm run dev