Skip to content

Commit 771beb2

Browse files
authored
Add files via upload
1 parent c79fc81 commit 771beb2

2 files changed

Lines changed: 91 additions & 5 deletions

File tree

Dockerfile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,7 @@ RUN mkdir -p static/css staticfiles media tmp
5757

5858
RUN chmod +x ./startup.sh
5959

60-
RUN apt-get update && apt-get install -y dos2unix
61-
RUN dos2unix download-models.sh
62-
RUN chmod +x download-models.sh
60+
RUN chmod +x ./download-models.sh
6361
RUN ./download-models.sh
6462

6563
RUN npm run build
@@ -73,5 +71,4 @@ HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 \
7371

7472
EXPOSE 8000
7573

76-
77-
CMD ["./startup.sh"]
74+
CMD ["./startup.sh"]

setup.md

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
# DeepFX Studio
2+
3+
>Note:
4+
This text is not AI-generated—I have personally written it. Please take the time to read it carefully.
5+
6+
7+
## File Structures
8+
9+
```bash
10+
./
11+
├── ai_colorization
12+
├── ai_eraser
13+
├── ai_filter
14+
├── ai_image_editor
15+
├── ai_image_upscale
16+
├── ai_text_to_image_generator
17+
├── artistic_image_creator
18+
├── background_remover
19+
├── components
20+
├── CONTRIBUTING.md
21+
├── dashboard
22+
├── db.sqlite3
23+
├── deepfx_studio
24+
├── docker-compose.yml
25+
├── Dockerfile
26+
├── INSTALLATION.md
27+
├── manage.py
28+
├── package.json
29+
├── package-lock.json
30+
├── pyproject.toml
31+
├── README.md
32+
├── requirements.txt
33+
├── static
34+
├── tailwind.config.js
35+
├── templates
36+
├── user_auth
37+
└── website
38+
```
39+
40+
41+
These are seperate apps
42+
43+
```bash
44+
├── templates # Contains all the HTML page for all this app in a single folder
45+
├── deepfx_studio # This is the main App which controls all other apps in this django project
46+
├── user_auth # Contains UI related compoents related to Django all-auth
47+
├── ai_colorization # Contains Code Releated to AI Eraser Page(DeOldify)
48+
├── ai_filter # Contains Code Releated to AI Filter Page (image_to_cartoon)
49+
├── ai_image_editor # Contains Code Releated to AI Image Editor (Inpaint-Anything)
50+
├── ai_image_upscale # Contains Code related to Image Upscale Page (Real-ESRGAN)
51+
├── ai_text_to_image_generator # Contains Code related to Text to Image Generator Page
52+
├── artistic_image_creator # Contains Code related to Artistix Image Create (NST)
53+
├── background_remover # Contains Code Related to Backgroud Remover Page (Is-NET)
54+
├── dashboard # Dashboard Page Related
55+
└── website # Contains all the pages related to the website i.e landing page, Abiout Page or etc
56+
```
57+
58+
Each Djnago App has a seperate folder named according to the model which they use
59+
60+
These are the pictures which will tell you where to place the models after you download them from [releases](https://github.com/XBastille/DeepFX-Studio/releases) page in github
61+
62+
63+
#### AI Colorization
64+
65+
![AI Colorization](./images/ai_colorization_file_struct.png)
66+
67+
#### AI Filter
68+
69+
![AI Filter](./images/ai_filter_file_struct.png)
70+
71+
#### AI Image Editor
72+
73+
![AI Image Editor](./images/ai_image_editor_file_struct.png)
74+
75+
#### AI Image Upscale
76+
77+
![AI Image Upscale](./images/ai_image_upscale_file_struct.png)
78+
79+
#### Artistic Image Creator
80+
81+
![Artistic Image Creator](./images/artistic_image_creator_file_struct.png)
82+
83+
#### Background Remover
84+
85+
![Background Remover](./images/background_remover_file_struct.png)
86+
87+
#### Text To Image
88+
89+
![Text To Image](./images/text-to-image_file_struct.png)

0 commit comments

Comments
 (0)