tracks/internal
Claude 65f1265555
Simplify database support to SQLite only
Removed PostgreSQL and MySQL support to reduce complexity:
- Removed postgres and mysql drivers from go.mod
- Simplified database.Initialize() to only use SQLite
- Simplified DatabaseConfig struct (removed Driver, Host, Port, User, Password, SSLMode)
- Removed GetDSN() method from config
- Removed --db CLI flag (only --db-name remains for specifying SQLite file path)
- Updated .env.example to remove MySQL/PostgreSQL options
- Updated README_GOLANG.md to reflect SQLite-only support
- Ran go mod tidy to clean up dependencies

This makes the application simpler to deploy and maintain, with no
external database dependencies required.
2025-11-05 11:23:40 +00:00
..
config Simplify database support to SQLite only 2025-11-05 11:23:40 +00:00
database Simplify database support to SQLite only 2025-11-05 11:23:40 +00:00
handlers Rewrite Tracks application in Golang 2025-11-05 10:46:59 +00:00
middleware Rewrite Tracks application in Golang 2025-11-05 10:46:59 +00:00
models Fix polymorphic tagging and add test script 2025-11-05 10:59:26 +00:00
services Fix polymorphic tagging and add test script 2025-11-05 10:59:26 +00:00