-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathstructure.txt
More file actions
50 lines (49 loc) · 1.57 KB
/
structure.txt
File metadata and controls
50 lines (49 loc) · 1.57 KB
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
.
├── app.py
├── backend
│ ├── __init__.py
│ ├── routes
│ │ ├── dashboard_routes.py
│ │ ├── Procfile
│ │ └── voice_journal_routers.py
│ ├── static
│ │ ├── css
│ │ │ ├── style.css
│ │ │ └── voice_journal.css
│ │ └── js
│ │ ├── journal_manager.js
│ │ ├── script.js
│ │ ├── service-worker.js
│ │ └── voice_recorder.js
│ └── templates
│ ├── base.html
│ ├── index.html
│ └── voice_journal.html
├── CodeOfConduct.md
├── Contributing.md
├── frontend
│ ├── index.html
│ ├── package.json
│ ├── package-lock.json
│ ├── postcss.config.cjs
│ ├── public
│ │ └── vite.svg
│ ├── src
│ │ ├── App.jsx
│ │ ├── components
│ │ │ ├── Navbar.jsx
│ │ │ └── themeToggle.jsx
│ │ ├── context
│ │ │ └── ThemeContext.jsx
│ │ ├── counter.js
│ │ ├── javascript.svg
│ │ ├── main.jsx
│ │ └── style.css
│ └── tailwind.config.js
├── LICENSE
├── package-lock.json
├── README.md
├── requirements.txt
├── storage.py
└── structure.txt
12 directories, 36 files