An open-source, self-hostable platform for developers to manage their network, outreach, and career growth.
Tip
If you like DaySeven, consider giving the repository a star. It helps more developers discover the project!
Building relationships with the people working in your industry is really important in the career of any individual. For developers, this becomes more important as networking is equal to better opportunities & better career growth.
Developers meet people everywhere: LinkedIn, GitHub, X, communities, conferences, and workplaces. But keeping track of who you met where and remembering to reach out to them from time to time is hard and very manual.
DaySeven helps developers solve this problem.
It gives developers a place to organize their professional network, manage outreach, keep context, and build relationships that can grow throughout their careers.
DaySeven supports two platforms:
- Android: Compose Multiplatform + Kotlin Multiplatform
- Desktop: Compose Multiplatform + Kotlin Multiplatform
Follow the instructions below to build and run each target locally.
The Android application is built with Compose Multiplatform. Follow the instructions below to install and launch the application on a connected device or running emulator.
Install the debug build on a connected device or running emulator:
./gradlew :android:installDebugLaunch the installed application:
adb shell am start -n dev.dayseven.app/.MainActivityThe desktop application is built with Compose Multiplatform and supports Windows, macOS, and Linux. During development, you can run it normally or with Compose Hot Reload for a faster development experience.
./gradlew :desktop:runRun with Compose Hot Reload enabled:
./gradlew :desktop:hotRunDesktop --autoReloadOr use the short form:
./gradlew :desktop:hotRunDesktop --autoWith automatic reload enabled, changes are applied as soon as you save your files without restarting the application. Compose Hot Reload updates supported UI changes in real time, preserving your running app for a faster development workflow.