Initial codebase structure

- Complete Gemini server implementation with logging
- Add comprehensive documentation (README.md, AGENTS.md)
- Implement certificate management guidelines
- Add .gitignore for security and build artifacts
- All unit tests passing (14/14)
- Ready for production deployment
This commit is contained in:
Jeena 2026-01-15 08:21:37 +09:00
commit 1ed443ff2a
10 changed files with 639 additions and 0 deletions

22
.gitignore vendored Normal file
View file

@ -0,0 +1,22 @@
# Rust build artifacts
/target/
Cargo.lock
# Development files
*.log
*.md.tmp
# OS files
.DS_Store
Thumbs.db
# TLS certificates - NEVER commit to repository
*.pem
*.key
*.crt
certs/
certbot/
# IDE files
.vscode/
.idea/