hooker-dev commited on
Commit
baccb82
·
verified ·
1 Parent(s): 72bd1f0

Upload .gitignore with huggingface_hub

Browse files
Files changed (1) hide show
  1. .gitignore +41 -0
.gitignore ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # dependencies
2
+ /node_modules
3
+ /.pnp
4
+ .pnp.js
5
+
6
+ # testing
7
+ /coverage
8
+
9
+ # next.js
10
+ /.next/
11
+ /out/
12
+
13
+ # production
14
+ /build
15
+
16
+ # misc
17
+ .DS_Store
18
+ *.pem
19
+
20
+ # debug
21
+ npm-debug.log*
22
+ yarn-debug.log*
23
+ yarn-error.log*
24
+
25
+ # local env files
26
+ .env*.local
27
+
28
+ # vercel
29
+ .vercel
30
+
31
+ # typescript
32
+ *.tsbuildinfo
33
+ next-env.d.ts
34
+
35
+ This Next.js application provides a modern, responsive UI for the Z-Image Turbo model. To connect it to your Python backend, you'll need to:
36
+
37
+ 1. Set the `BACKEND_URL` environment variable to point to your Python Gradio server
38
+ 2. Update the `/api/generate.js` endpoint to properly proxy requests to your backend
39
+ 3. Ensure CORS is properly configured on your Python backend
40
+
41
+ The UI is fully responsive, uses Tailwind CSS for styling, and includes all the features from the original Gradio interface.