Inspired by the following comment on this reddit post
ThoughtBank.
Imagine Twitter with no running feed. There's a Deposit function (post) and a Withdraw function (browse).
Deposit is when you have a random thought, idea, joke, etc. You type it in, then hit deposit. It goes into the "bank," disappearing forever (at least from your perspective).
When you hit Withdraw, you get serviced a random thought that another user has deposited. If it's deep, or makes you laugh, etc., you swipe right and it goes into your ThoughtWallet, so you can go back and view it later. Each user has a tracker that shows how many times their thoughts have been saved by other users (thoughtstock value). The more times a thought gets saved, the more likely it is to show up for other users' consideration. Similar to Tinder, as long as you keep swiping, you keep seeing new thoughts. (pun intended?) Ideally there would be an auto-mod system assigns each post a unique code to prevent any one user from getting served the same thought post repeatedly.
Possible additions are some sort of feature to enforce originality in the actual text of each post (which has it's own drawbacks), geo-mapped leaderboard of ppl in your area with the highest thoughtstock value, etc. Total anonymity would also be a nice feature, but that eliminates a lot of the potential gamification aspects and is much less attractive to advertisers.
This is a Kotlin Multiplatform project targeting Android, iOS, Web, Desktop, Server.
-
/composeApp
is for code that will be shared across your Compose Multiplatform applications. It contains several subfolders:commonMain
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,
iosMain
would be the right folder for such calls.
-
/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. -
/server
is for the Ktor server application. -
/shared
is for the code that will be shared between all targets in the project. The most important subfolder iscommonMain
. If preferred, you can add code to the platform-specific folders here too.
Learn more about Kotlin Multiplatform, Compose Multiplatform, Kotlin/Wasm…
Note: Compose/Web is Experimental and may be changed at any time. Use it only for evaluation purposes. We would appreciate your feedback on Compose/Web and Kotlin/Wasm in the public Slack channel #compose-web. If you face any issues, please report them on GitHub.
You can open the web application by running the :composeApp:wasmJsBrowserDevelopmentRun
Gradle task.
The server is deployed to fly.io via Dockerfile.
-
Sign up for fly.io
-
Install
flyctl
using these instructions -
From the
server
directory, runfly launch
to create a new app for the server -
Run
flyctl postgres create
to create a Postgres app -
Associate the server app with the Postgres app by running
fly postgres attach <postgres app name> --app <app name>
- A new database and user are created in the Postgres cluster app.
-
Create a new secret
JDBC_DATABASE_URL
under the server app according to the following format:jdbc:postgresql://<host>/<database>?sslmode=disable&user=<user>&password=<password>
,replacing the values in
<>
with the actual values obtained from before
- Build the latest jar using the server
buildFatJar
gradle task - From the
server
directory, runfly deploy
To access the database from your own machine, run fly proxy 15432:5432 -a <postgres app name>
to forward the server port to your local system. This will make the database accessible on localhost:15432
.