https://github.com/gnarea/segnale
AI-powered app to aggregate redundant event coverage from automated emails and newsletters, surfacing actionable items whilst leaving human correspondence untouched.
https://github.com/gnarea/segnale
Last synced: 21 days ago
JSON representation
AI-powered app to aggregate redundant event coverage from automated emails and newsletters, surfacing actionable items whilst leaving human correspondence untouched.
- Host: GitHub
- URL: https://github.com/gnarea/segnale
- Owner: gnarea
- License: gpl-3.0
- Created: 2025-10-26T18:27:10.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-10-26T21:44:08.000Z (9 months ago)
- Last Synced: 2025-10-26T23:15:55.709Z (9 months ago)
- Language: Kotlin
- Homepage:
- Size: 205 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Segnale
Segnale uses AI to aggregate redundant event coverage from automated emails and newsletters, surfacing actionable items whilst leaving human correspondence untouched.
This is a Kotlin Multiplatform project targeting Android, iOS, Desktop (JVM).
## Dependencies
Dependencies are locked for reproducible builds. Lock files (`*.lockfile`) are auto-generated with `./gradlew dependencies --write-locks`.
## Code Organisation
* [/composeApp](./composeApp/src) is for code that will be shared across your Compose Multiplatform applications. It contains several subfolders:
* [commonMain](./composeApp/src/commonMain/kotlin) is for code that’s common for all targets.
* Other folders are for Kotlin code that will be compiled for only the platform indicated in the folder name.
For example, if you want to use Apple’s CoreCrypto for the iOS part of your Kotlin app,
the [iosMain](./composeApp/src/iosMain/kotlin) folder would be the right place for such calls.
Similarly, if you want to edit the Desktop (JVM) specific part, the [jvmMain](./composeApp/src/jvmMain/kotlin)
folder is the appropriate location.
* [/iosApp](./iosApp/iosApp) contains iOS applications. Even if you’re sharing your UI with Compose Multiplatform,
you need this entry point for your iOS app. This is also where you should add SwiftUI code for your project.
### Build and Run Android Application
To build and run the development version of the Android app, use the run configuration from the run widget
in your IDE’s toolbar or build it directly from the terminal:
```shell
./gradlew :composeApp:assembleDebug
```
### Build and Run Desktop (JVM) Application
To build and run the development version of the desktop app, use the run configuration from the run widget
in your IDE’s toolbar or run it directly from the terminal:
```shell
./gradlew :composeApp:run
```
### Build and Run iOS Application
To build and run the development version of the iOS app, use the run configuration from the run widget
in your IDE’s toolbar or open the [/iosApp](./iosApp) directory in Xcode and run it from there.
Learn more about [Kotlin Multiplatform](https://www.jetbrains.com/help/kotlin-multiplatform-dev/get-started.html)…
## Licence
Copyright (C) 2025 by Gus Narea.
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License version 3 as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see .
The full licence text is available in the [LICENSE](./LICENSE) file.