Features: - Docker WebDAV server with docker-compose - Server configuration with .env - Project structure for Android app - Complete documentation references - MIT License Server: - bytemark/webdav Docker image - Basic authentication - Port 8080 exposed - Volume mounts for data and logs - Quick start README Android: - Project structure defined - README with setup instructions - Links to complete implementation guide Status: Server running and tested ✓ Next: Android app implementation in Android Studio
40 lines
360 B
Plaintext
40 lines
360 B
Plaintext
# Server
|
|
server/.env
|
|
server/notes-data/
|
|
server/logs/
|
|
|
|
# Android
|
|
android/.gradle/
|
|
android/.idea/
|
|
android/local.properties
|
|
android/build/
|
|
android/*/build/
|
|
android/.DS_Store
|
|
android/captures/
|
|
android/*.apk
|
|
android/*.ap_
|
|
android/*.aab
|
|
|
|
# Gradle
|
|
.gradle
|
|
build/
|
|
|
|
# IDE
|
|
.idea/
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
.vscode/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Temp
|
|
*.tmp
|
|
*.swp
|
|
*~
|