-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject Structure
More file actions
21 lines (21 loc) · 1.02 KB
/
Project Structure
File metadata and controls
21 lines (21 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
TruthWeb/
├── frontend/ # Node.js & npm frontend
│ ├── src/
│ │ ├── index.html # Your existing HTML files
│ │ ├── about.html
│ │ └── ... # Other HTML pages
│ ├── package.json # Frontend dependencies (e.g., React, Tailwind)
│ └── node_modules/
├── backend/ # Python & Django backend
│ ├── truthweb/ # Django project directory
│ │ ├── settings.py
│ │ ├── urls.py
│ │ └── wsgi.py
│ ├── user_profiles/ # Django app for profiles
│ ├── pi_wallet/ # Django app for wallet
│ ├── marketplace/ # Django app for listings
│ ├── manage.py
│ └── requirements.txt # Python dependencies (e.g., Django, djangorestframework)
├── data/ # MongoDB/PostgreSQL data (if local)
├── .gitignore # Updated as above
└── README.md # Project documentation