-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFolder Structure.txt
53 lines (53 loc) · 1.68 KB
/
Folder Structure.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
personalized-news-aggregator/
│
├── news_aggregator/
│ ├── __init__.py
│ ├── settings.py
│ ├── urls.py
│ ├── wsgi.py
│ ├── asgi.py (if needed for WebSockets)
│ ├── apps/
│ │ ├── __init__.py
│ │ ├── news/
│ │ │ ├── __init__.py
│ │ │ ├── models.py
│ │ │ ├── views.py
│ │ │ ├── urls.py
│ │ │ ├── serializers.py
│ │ │ └── templates/
│ │ │ ├── news/
│ │ │ │ ├── index.html
│ │ │ │ ├── article_detail.html
│ │ │ │ └── base.html
│ │ ├── users/
│ │ │ ├── __init__.py
│ │ │ ├── models.py
│ │ │ ├── views.py
│ │ │ ├── urls.py
│ │ │ └── templates/
│ │ │ └── registration/
│ │ │ ├── login.html
│ │ │ └── signup.html
│ │ ├── templates/
│ │ │ ├── base.html
│ │ │ └── includes/
│ │ │ ├── header.html
│ │ │ └── footer.html
│ │ ├── static/
│ │ ├── css/
│ │ ├── js/
│ │ └── images/
│ │
│ ├── manage.py
│ └── tests/
│ ├── __init__.py
│ ├── test_views.py
│ ├── test_models.py
│ └── test_api.py
│
├── requirements.txt
├── Dockerfile
├── .env
├── .gitignore
├── LICENSE
└── README.md