Free "social media" platform without any accounts
The UI may not be that cool but it's free and open source
You can make posts for other to see
Comment some other posts made by other people
I want to add messaging function with personal encryption keys
To chat you will need to write another username and the encryption key with that your messages will be encrypted
I made this app because I wanted to make a platform
that doesnt require you to make accounts and shit like this
I wanted to create an app that is 100% free and anyone can use without restrictions
It uses python with flask on the server side
And svelte at the frontend side
As database it uses sqlite3
For generating random usernames it uses this library
Here are two links with the demo
First link and the second
To use it you need to start the server by yourself on your pc
Here are the demo server to test the app
Just copy the link at paste in the app to test it
Main Page with posts
An example of post
Make new post page
First of all we need an server
To start a server type:
cd server
pip3 install flask flask_cors
flask run
After we started the server we need a client to interact with that server
cd client
npm install
npm run dev
After we launch the client launch it and paste the url for the server that we created
By default its http://127.0.0.1:5000/