File tree Expand file tree Collapse file tree 1 file changed +30
-29
lines changed Expand file tree Collapse file tree 1 file changed +30
-29
lines changed Original file line number Diff line number Diff line change @@ -41,36 +41,37 @@ ALL CONTENTS IN THIS REPO ARE FOR EDUCATIONAL PURPOSES ONLY.
4141
4242``` txt
4343lafs-cms/
44- ├── README.md
45- ├── requirements.txt
46- ├── LICENSE
47- ├── docs/
4844│
49- └── app/
50- │
51- ├── blueprints/
52- │ │
53- │ ├── main/
54- │ │ ├── __init__.py
55- │ │ ├── routes.py
56- │ │ │
57- │ │ ├── static/
58- │ │ └── templates/
59- │ │
60- │ └── cms/
61- │ ├── __init__.py
62- │ ├── routes.py
63- │ │
64- │ ├── static/
65- │ └── templates/
66- │
67- ├── crud/
68- │ └── __init__.py
69- ├── helpers/
70- │ └── __init__.py
71- │
72- ├── app.py
73- └── lafs.db
45+ ├── app/
46+ │ │
47+ │ ├── blueprints/
48+ │ │ │
49+ │ │ ├── cms/
50+ │ │ │ ├── __init__.py
51+ │ │ │ ├── routes.py
52+ │ │ │ ├── static/
53+ │ │ │ └── templates/
54+ │ │ │
55+ │ │ └── main/
56+ │ │ ├── __init__.py
57+ │ │ ├── routes.py
58+ │ │ ├── static/
59+ │ │ └── templates/
60+ │ │
61+ │ ├── crud/
62+ │ │ └── __init__.py
63+ │ │
64+ │ ├── helpers/
65+ │ │ └── __init__.py
66+ │ │
67+ │ ├── app.py
68+ │ └── lafs.db
69+ │
70+ ├── docs/
71+ ├── .gitignore
72+ ├── LICENSE
73+ ├── README.md
74+ └── requirements.txt
7475```
7576
7677## Getting Started
You can’t perform that action at this time.
0 commit comments