質問編集履歴

2

treeの追加

2022/05/18 03:33

投稿

Reik
Reik

スコア5

test CHANGED
File without changes
test CHANGED
@@ -213,3 +213,64 @@
213
213
  Pillow>=5.3.0,<5.4.0
214
214
  pytest-django==3.5.1
215
215
  django-cors-headers==2.4.0
216
+
217
+
218
+ .
219
+ ├── Dockerfile
220
+ ├── Jupyter_Sample.ipynb
221
+ ├── Makefile
222
+ ├── app
223
+ │ ├── app
224
+ │ │ ├── __init__.py
225
+ │ │ ├── __pycache__
226
+ │ │ │ ├── __init__.cpython-39.pyc
227
+ │ │ │ └── settings.cpython-39.pyc
228
+ │ │ ├── settings.py
229
+ │ │ ├── urls.py
230
+ │ │ └── wsgi.py
231
+ │ ├── manage.py
232
+ │ ├── pytest.ini
233
+ │ ├── shop
234
+ │ │ ├── __init__.py
235
+ │ │ ├── __pycache__
236
+ │ │ │ ├── __init__.cpython-310.pyc
237
+ │ │ │ ├── __init__.cpython-39.pyc
238
+ │ │ │ ├── apps.cpython-39.pyc
239
+ │ │ │ ├── models.cpython-310.pyc
240
+ │ │ │ └── models.cpython-39.pyc
241
+ │ │ ├── admin.py
242
+ │ │ ├── apps.py
243
+ │ │ ├── migrations
244
+ │ │ │ ├── 0001_initial.py
245
+ │ │ │ ├── 0002_product.py
246
+ │ │ │ └── __init__.py
247
+ │ │ ├── models.py
248
+ │ │ ├── templates
249
+ │ │ │ ├── base.html
250
+ │ │ │ ├── footer.html
251
+ │ │ │ ├── header.html
252
+ │ │ │ ├── navbar.html
253
+ │ │ │ └── shop
254
+ │ │ │ ├── product_detail.html
255
+ │ │ │ └── product_list.html
256
+ │ │ ├── tests
257
+ │ │ │ ├── test_models.py
258
+ │ │ │ └── test_views.py
259
+ │ │ ├── urls.py
260
+ │ │ └── views.py
261
+ │ └── static
262
+ │ ├── css
263
+ │ │ └── custom.css
264
+ │ ├── img
265
+ │ │ ├── apple.jpeg
266
+ │ │ ├── banner.jpg
267
+ │ │ └── logo.jpg
268
+ │ └── media
269
+ │ └── product
270
+ │ ├── apple.jpeg
271
+ │ ├── banana.jpeg
272
+ │ ├── kiwi.jpg
273
+ │ ├── orange.jpeg
274
+ │ └── pie.jpeg
275
+ ├── docker-compose.yml
276
+ └── requirements.txt

1

初心者マークの追加

2022/05/16 14:12

投稿

Reik
Reik

スコア5

test CHANGED
File without changes
test CHANGED
File without changes