Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
50a9971
vercel commit
Farzinaayub Jun 5, 2023
a6485ec
working on deploy
Farzinaayub Jun 5, 2023
e64fe78
removed lock
Farzinaayub Jun 5, 2023
2a1f9ed
secret keys
Farzinaayub Jun 5, 2023
51ec0a5
commented
Farzinaayub Jun 5, 2023
ae261a4
tomlfile+req
Farzinaayub Jun 5, 2023
44d1126
tomlfile+req
Farzinaayub Jun 5, 2023
dbf59f9
tomlfile+req
Farzinaayub Jun 5, 2023
d0ae440
tomlfile+req
Farzinaayub Jun 5, 2023
351c40d
tomlfile+req
Farzinaayub Jun 5, 2023
6f1b81e
tomlfile+req
Farzinaayub Jun 5, 2023
33877cf
tomlfile+req
Farzinaayub Jun 5, 2023
9768aef
tomlfile+req
Farzinaayub Jun 5, 2023
51edb58
tomlfile+req
Farzinaayub Jun 5, 2023
982f318
tomlfile+req
Farzinaayub Jun 5, 2023
7de738c
tomlfile+req
Farzinaayub Jun 5, 2023
128a29b
==
Farzinaayub Jun 5, 2023
713ecba
removedmigrfiles
Farzinaayub Jun 5, 2023
90b55d4
migrationsissue
Farzinaayub Jun 5, 2023
875861a
migrationsissue
Farzinaayub Jun 5, 2023
a36c006
loadstatic
Farzinaayub Jun 5, 2023
eb190e8
jscallfunct/
Farzinaayub Jun 5, 2023
ff3c559
jscallfunct/
Farzinaayub Jun 5, 2023
8cd6b56
erorcatch
Farzinaayub Jun 5, 2023
3c79e77
test
Farzinaayub Jun 6, 2023
de4efbf
test
Farzinaayub Jun 6, 2023
ec613cf
dburl
Farzinaayub Jun 6, 2023
7f45c41
makemigrations
Farzinaayub Jun 6, 2023
93f4478
logging
Farzinaayub Jun 6, 2023
9b0c8cb
debug true
Farzinaayub Jun 6, 2023
d7d8f45
debug true
Farzinaayub Jun 6, 2023
8844278
debug true
Farzinaayub Jun 6, 2023
29566af
commiting
Farzinaayub Jun 6, 2023
58b0588
removed dbsqlite3 file
Farzinaayub Jun 6, 2023
815f639
working video
Farzinaayub Jul 24, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@ cognitive.py
yoga app
functn1.js
functn1.py
das.html
das.html
requirements.txt
sshkey.txt
sshkey.txt.pub
Empty file added README.md
Empty file.
Binary file modified __pycache__/transcribe.cpython-39.pyc
Binary file not shown.
Binary file modified base/__pycache__/urls.cpython-39.pyc
Binary file not shown.
Binary file modified base/__pycache__/views.cpython-39.pyc
Binary file not shown.
28 changes: 0 additions & 28 deletions base/migrations/0001_initial.py

This file was deleted.

This file was deleted.

This file was deleted.

22 changes: 0 additions & 22 deletions base/migrations/0004_alter_task_date_delete_date.py

This file was deleted.

This file was deleted.

This file was deleted.

21 changes: 0 additions & 21 deletions base/migrations/0007_alter_task_category_delete_category.py

This file was deleted.

22 changes: 0 additions & 22 deletions base/migrations/0008_alter_task_options_task_created_time.py

This file was deleted.

This file was deleted.

Binary file modified base/migrations/__pycache__/0001_initial.cpython-39.pyc
Binary file not shown.
3 changes: 1 addition & 2 deletions base/templates/base/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h1>Dashboard Template</h1>
{% block scripts %}
<script>
const commandfn=async()=>{
fetch('/call_function', { method: 'GET' }).then((res)=>res.json()
await fetch('/call_function', { method: 'GET' }).then((res)=>res.json()
).then((data)=>{
let name = document.createElement('h2');
name.textContent = data.result.name;
Expand All @@ -34,7 +34,6 @@ <h1>Dashboard Template</h1>
document.querySelector('#voice').addEventListener('click',commandfn)
</script>
{% endblock %}
</body>

{% endblock content %}

Loading