Skip to content

Commit 0ec2ded

Browse files
committed
add remix links and quickstart to readme
1 parent 34a2f43 commit 0ec2ded

2 files changed

Lines changed: 43 additions & 1 deletion

File tree

.env.local.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
NEXT_PUBLIC_GET_RANDOM_PROMPT_WORKFLOW=
2+
NEXT_PUBLIC_GET_SCORE_WORKFLOW=

README.md

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This demo app showcases how you can generate a full stack app using AI.
55
- Generative UI using v0 by Vercel
66
- Generative backend APIs and functions using [BuildShip](https://buildship.com/)
77

8-
Full tutorial video on how this app was generated here
8+
Full tutorial video on how this app was generated here
99
[![Frame 203524](https://github.com/rowyio/Generative-Full-Stack/assets/307298/a37205b6-a66e-43ba-a5b6-fc0c07f8eefe)](https://www.youtube.com/watch?v=lYxUbITSAVc)
1010

1111
LIVE Demo of the generated app: https://generative-full-stack.vercel.app/
@@ -23,3 +23,43 @@ LIVE Demo of the generated app: https://generative-full-stack.vercel.app/
2323
- Explore nodes and add the nodes for your usecase or generate logic blocks using AI
2424
- Test the API with sample values
2525
- Click Ship
26+
27+
## Quickstart
28+
29+
### Backend: Clone BuildShip Templates
30+
31+
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.
32+
[Remix Template.](https://buildship.app/remix?template=guess-the-prompt-game-get-random)
33+
34+
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.
35+
[Remix Template.](https://buildship.app/remix?template=guess-the-prompt-game-get-score)
36+
37+
### v0 Frontend
38+
39+
Clone repo:
40+
41+
```bash
42+
git clone git@github.com:rowyio/Generative-Full-Stack.git
43+
```
44+
45+
Install dependencies:
46+
47+
```bash
48+
npm install
49+
```
50+
51+
Environment variables:
52+
53+
```bash
54+
mv .env.local.example .env.local
55+
```
56+
57+
Set `NEXT_PUBLIC_GET_RANDOM_PROMPT_WORKFLOW` to the endpoint url of your `Get Random` workflow.
58+
59+
Set `NEXT_PUBLIC_GET_SCORE_WORKFLOW` to the endpoint url of your `Get Score` workflow.
60+
61+
Run app:
62+
63+
```bash
64+
npm run dev
65+
```

0 commit comments

Comments
 (0)