28 lines
770 B
Plaintext
28 lines
770 B
Plaintext
# Environment files
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
.archive/
|
|
|
|
# Docker volume RUNTIME data (large binary/runtime files - not schema SQL)
|
|
volumes/db-data/
|
|
volumes/storage/
|
|
volumes/pooler/
|
|
volumes/logs/
|
|
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.bak.*
|
|
backups/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
*.bak
|
|
|
|
|
|
|
|
|
|
we are going to make improvements to our classroomcopilot app to allow a teacher user to create and manage a timetable of lessons taught to various classes and use tldraw to teach those lessons. Each lesson should have its own tldraw whiteboard (start with blank) and changes that are made to the whiteboard should be saved for later retrieval. Classes contain students. Each student in the class should have access to the tldraw whiteboards. Teachers should be able to manage students in their classes. |