Commit Graph

5 Commits

Author SHA1 Message Date
61202c5969 chore: remove sqlx dependency from Cargo.toml and Cargo.lock 2026-01-02 13:14:24 +01:00
1d141c7a97 feat(api): implement user authentication and registration endpoints
- Add main application logic in `api/src/main.rs` to initialize server, database, and services.
- Create authentication routes in `api/src/routes/auth.rs` for login, register, logout, and user info retrieval.
- Implement configuration route in `api/src/routes/config.rs` to expose application settings.
- Define application state management in `api/src/state.rs` to share user service and configuration.
- Set up Docker Compose configuration in `compose.yml` for backend, worker, and database services.
- Establish domain logic in `domain` crate with user entities, repositories, and services.
- Implement SQLite user repository in `infra/src/user_repository.rs` for user data persistence.
- Create database migration handling in `infra/src/db.rs` and session store in `infra/src/session_store.rs`.
- Add necessary dependencies and features in `Cargo.toml` files for both `domain` and `infra` crates.
2026-01-02 13:07:09 +01:00
c1c42f4fd9 feat: Add initial PostgreSQL migration, refactor database connection to k_core, and simplify session store setup. 2026-01-02 05:47:51 +01:00
cb73f146c5 refactor: Remove smart-features and its associated dependencies, and refine broker-nats feature declaration. 2026-01-02 05:31:08 +01:00
8dfb3c6922 init 2026-01-02 05:27:44 +01:00