update project,

This commit is contained in:
louiscklaw
2025-05-11 08:02:50 +08:00
parent 9d46de56c3
commit c29ab4b920
5 changed files with 48 additions and 0 deletions

9
.editorconfig Normal file
View File

@@ -0,0 +1,9 @@
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

1
.gitattributes vendored Normal file
View File

@@ -0,0 +1 @@
* text=lf

3
.gitignore vendored
View File

@@ -7,3 +7,6 @@ _del
*.log
*.del
**/_del
**/volumes/**
006_lab

18
TODO.md Normal file
View File

@@ -0,0 +1,18 @@
# TODO
- [ ] quiz -> listening practice content change to use api
- [ ] quiz -> matching frenzy content change to use api
- [ ] quiz -> connective revision content change to use api
- [x] lesson content change to use api
- [ ] rework for dockerfile, docker-compose for nvm
---
last stopped at:
`http://localhost:3000/dashboard/lesson_categories/edit/k17skxdo4j6w39f`
## related
[[001_documentation/Requirements/REQ0002/index.md]]

17
backup.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/usr/bin/env bash
set -ex
# tar -zcvf ./_archive/020_update_fix_edit_page_error.tar.gz \
# --exclude "node_modules" \
# --exclude ".next" \
# --exclude ".git" \
# ./project
rsync -avh \
--exclude ".next" \
--exclude "node_modules" \
--exclude ".git" \
. ../_archive/022_init_lesson_categories
echo "done"